How to remove the mean from a data
26 views (last 30 days)
Show older comments
I have 90000 speed data, and I want to make each one minus the mean, how to get that?
a=speed;
aver=mean(a);
then what's the next?
4 Comments
Accepted Answer
Mathieu NOE
on 24 Feb 2021
hello
you can simply do
a = a - mean(a);
NB : you can also use the detrend function
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!