rearrange your matrices into a single 3D matrix.
A(:, :, 1) = [1 2; 3 4];
A(:, :, 2) = [5 7; 10 6];
mean(A, 3)
    3.0000    4.5000
    6.5000    5.0000
std(A, [], 3)
    2.8284    3.5355
    4.9497    1.4142
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!