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!