Using smoothing techniques plot graph.

2 次查看(过去 30 天)
I have a problem submitted below. How to plot that graph? I can't graph it. I could get wrong graphs.

采纳的回答

Ameer Hamza
Ameer Hamza 2020-5-23
This is a moving average filter. You can use movmean(): https://www.mathworks.com/help/releases/R2020a/matlab/ref/movmean.html with 'EndPoints' option set to 'discard'
movmean(y, 3, 'Endpoints', 'discard') % first filter
movmean(y, 5, 'Endpoints', 'discard') % Second filter

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by