How to calculate moving standard deviation in a matrix?
1 回表示 (過去 30 日間)
古いコメントを表示
Hi Guys, I have got a matrix :378x9. I need to calculate the moving standard deviation with a window size of 180(starting from row one). Can somebody help me please?
0 件のコメント
回答 (1 件)
Manolis Michailidis
2015 年 10 月 13 日
7 件のコメント
Manolis Michailidis
2015 年 10 月 13 日
編集済み: Manolis Michailidis
2015 年 10 月 13 日
for kk=1:size(X,2) % kk is your column index
s(1:180,kk)=movingstd(X(1:180,kk),180,'f');
end
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!