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!