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 Center および File ExchangeShifting and Sorting Matrices についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by