필터 지우기
필터 지우기

Sort a Matrix based on a column

조회 수: 2 (최근 30일)
Kris zenitis
Kris zenitis 2011년 12월 9일
댓글: Azzi Abdelmalek 2014년 2월 19일
I want to sort a matrix. Actually I want to sort the last column and all the rest columns based on the last. Has anyone idea about this???

채택된 답변

Walter Roberson
Walter Roberson 2011년 12월 9일
[lastvals, idx] = sort(A(:,end));
sortedA = A(idx,:);
  댓글 수: 2
Walter Roberson
Walter Roberson 2011년 12월 9일
Sorry I had the index order reversed. It is fixed in my Answer now.
Azzi Abdelmalek
Azzi Abdelmalek 2014년 2월 19일
[Kris zenitis commented]
I ve got a matrix 4000x9. When i tried your solution i got Index exceeds matrix dimensions.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by