How to calculate mean to an equal area in Matlab?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
James Tursa
2021-2-22
编辑:James Tursa
2021-2-22
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)
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!