How to remove the mean from a data
Afficher commentaires plus anciens
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 commentaires
Mathieu NOE
le 23 Fév 2021
hello
you can simply do
a = a - mean(a);
NB : you can also use the detrend function
Xuefei Sun
le 23 Fév 2021
Image Analyst
le 23 Fév 2021
@Mathieu NOE Please move your answer down to the Answer section below.
Mathieu NOE
le 24 Fév 2021
will do... tx
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!