Standard deviation of each elements in multiple matrices

Hi, I have 10 matrices of 32*35 dimensions. I want to find the standard deviation of all elements. i.e, standard deviation of 1st element in all 10 matrices , SD of 2nd element in all 10 matrices..etc, I want all the SD values in 11th matrix in 32*35 dimentions.
In addition, in the matrices i have NaN values, how to avoid those NaN values to find Standard Deviation.
Thank you,

Answers (1)

A = cat(3,A1,A2,A3,...,AN); here A1,A2,...,AN - your matrices
out = std(A,[],3,'omitnan');

2 Comments

Sir, I'm getting errors on this code.
Error using var Too many input arguments.
Error in std (line 31) y = sqrt(var(varargin{:}));
Error in Standard_deviation (line 28) out = std(A,[],3,'omitnan'); italic

Sign in to comment.

Asked:

on 20 Nov 2017

Commented:

on 8 Mar 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!