How to remove the mean from a data
古いコメントを表示
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 件のコメント
Mathieu NOE
2021 年 2 月 23 日
hello
you can simply do
a = a - mean(a);
NB : you can also use the detrend function
Xuefei Sun
2021 年 2 月 23 日
Image Analyst
2021 年 2 月 23 日
@Mathieu NOE Please move your answer down to the Answer section below.
Mathieu NOE
2021 年 2 月 24 日
will do... tx
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Simulink 3D Animation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!