sort the matrix according to order of column

조회 수: 1 (최근 30일)
ha ha
ha ha 2018년 11월 21일
편집: ha ha 2019년 4월 10일
Let's say, I have the matrix:
A=[x,y]=[1.1 2;1.2 4;1 4;1.1 3 ;1.3 2;1.3 4;1 2;1.2 3;1.3 3;1.2 2;1 3;1.1 4];
As you observed that:the value of
1st column vary from 1 to 1.3
2nd colume vary from 2 to 4
How can I sort the matrix A to get the result as:
Result=[1 2
1.1 2
1.2 2
1.3 2
1.1 3
1.2 3
1.3 3
1.1 4
1.2 4
1.3 4]

채택된 답변

Guillaume
Guillaume 2018년 11월 21일
편집: Guillaume 2018년 11월 21일
Result = sortrows(A, [2 1]) %sort first by 2nd column, then by 1st

추가 답변 (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