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!