roco1
Computer
- Aug 16, 2006
- 2
Hi All,
I found the code below, where M is a three dimensional array and M is a matrix (the third dimension of M)
and I don't know what it means std(A
))
Is the same as std(A) ie standard deviation of A matrix?
Thanks in advance
I found the code below, where M is a three dimensional array and M is a matrix (the third dimension of M)
Code:
A = M(:,:,1);
meanA = mean(mean(A));
stdA = std(A(:));
Is the same as std(A) ie standard deviation of A matrix?
Thanks in advance