Running standard deviation on matrix with NaN values
이전 댓글 표시
Hello, I have large matrix where each row represents time series for one location. I need to get equally sized matrix containing running standard deviation along the row dimension. There are several function to do this but none allows for NAN values. My time series includes a large amount of gaps and I can not interpolate the data. I would appreciate any suggestions. Thank you
채택된 답변
추가 답변 (2개)
Walter Roberson
2013년 12월 16일
function s = nanstd(X)
s = std(X(~isnan(X)));
end
카테고리
도움말 센터 및 File Exchange에서 Interpolation of 2-D Selections in 3-D Grids에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!