フィルターのクリア

Sort rows or cells (descending first column) where second column has repeated value

1 回表示 (過去 30 日間)
I have a set of points (x, y) in a matrix and want to re-arrange them according to a criteria.
Original : x ----- y (dots showing rows to arrange)
162, 59
161, 60
. 159, 61
. 160, 61
158, 62
157, 63
. 155, 64
. 156, 64
. 157, 64
. 153, 65
. 154, 65
152, 66
I need to sort them by row (descending within column 1, x) where my column 2 (y) has a repeated value.
Arranged: x ----- y
162, 59
161, 60
. 160, 61
. 159, 61
158, 62
157, 63
. 157, 64
. 156, 64
. 155, 64
. 154, 65
. 153, 65
152, 66
Since column 2 always has the same value within the criteria, I should sort only the column 1 (always within the criteria, of course).
Preferably without using loops. I am looking for the correct MATLAB way of doing it.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 5 日
編集済み: Azzi Abdelmalek 2013 年 3 月 5 日
Use sortrows
B=flipud(sortrows(A,1))
  6 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 5 日
I did not understand your question
Mauricio Escobar
Mauricio Escobar 2013 年 3 月 5 日
編集済み: Mauricio Escobar 2013 年 3 月 5 日
Sorry! I am obviously not thinking straight. Since it will be the same thing as in my original.

サインインしてコメントする。

その他の回答 (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