matlab 怎样按矩阵每一行的和的大小排序?

2024年12月01日 06:55
有1个网友回答
网友(1):

a = sum(mat,2);
[~,index] = sort(a);
newmat = mat(index,:);