matlab 求矩阵各行的平均值

matlab 求矩阵各行的平均值

M = mean(A,dim)
Examples

A = [1 2 3; 3 3 6; 4 6 8; 4 7 7];
mean(A,2)
ans =
2.0000
4.0000
6.0000
6.0000

你可能感兴趣的:(MATLAB,matlab)