Running standard deviation on matrix with NaN values
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (2)
Walter Roberson
le 16 Déc 2013
function s = nanstd(X)
s = std(X(~isnan(X)));
end
Tereza Smejkalova
le 17 Déc 2013
0 votes
Catégories
En savoir plus sur Interpolation of 2-D Selections in 3-D Grids dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!