How to sort matrix having multiple row and columns in ascending or descending order?

조회 수: 3 (최근 30일)
Hi,
I have a matrix of 50 x 10. What i want to do is to take the mean of 50 x 10 (column wise) and get 1 x 10. Then arrange them in ascending order?
Now, order which i get after arranging 1 x 10 , i want to arrange or swap whole column ( i.e. 50 x 10) matrix like this order.
Thanks and Regards

채택된 답변

Walter Roberson
Walter Roberson 2021년 12월 30일
[~, idx] = sort(mean(YourMatrix));
newMatrix = YourMatrix(:,idx);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by