How to calculate mean to an equal area in Matlab?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Xuefei Sun
am 22 Feb. 2021
Kommentiert: Xuefei Sun
am 22 Feb. 2021
I have 900000 time data and 900000 speed data. I need to calculate the mean speed for each 30secs and plot them. How can I get that? Thank you!
2 Kommentare
Akzeptierte Antwort
James Tursa
am 22 Feb. 2021
Bearbeitet: James Tursa
am 22 Feb. 2021
n = 3; % or whatever number of samples you need, must be divisible into size of data
time_average = mean(reshape(time_data,n,[]));
speed_average = mean(reshape(speed_data,n,[]));
plot(time_average,speed_average)
3 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Annotations 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!