Hi All,
I found the code below, where M is a three dimensional array and M is a matrix (the third dimension of M)
A = M(:,:,1);
meanA = mean(mean(A));
stdA = std(A(:));
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