How to 'clean' data using moving average window filter
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
timetry2
am 13 Okt. 2019
Bearbeitet: timetry2
am 13 Okt. 2019
How would I go about 'cleaning' the data by using a moving average window filter, using a window size of 5 and plotting this part in a new figure. I added the line of code y2 = movmean(y,5) but it is not giving me the results I need. Thank you in advance.
2 Kommentare
Image Analyst
am 13 Okt. 2019
Then try a different window width. What do you need? Why do you say the moving mean window with a window width of 5 is no good (not "clean")? Are you saying that the mean within the window is not accurate - not the true mean due to a bug in movmean()? What exactly does "not giving me the results I need" mean?
Akzeptierte Antwort
Image Analyst
am 13 Okt. 2019
Try this:
subplot(1, 2, 1);
plot(y, 'LineWidth', 2);
title('y', 'FontSize', 16)
subplot(1, 2, 2);
plot(y2, 'LineWidth', 2);
title('y2', 'FontSize', 16)
grid on;
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Subplots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!