Filter löschen
Filter löschen

sorting data in matrix

1 Ansicht (letzte 30 Tage)
Kieran
Kieran am 18 Okt. 2013
Bearbeitet: Andrei Bobrov am 18 Okt. 2013
say i have a matrix
a = [2 3; 1 3; 3 2; 2 2; 1 2; 3 1; 2 1; 1 1]
i would like to rearrange a such that the first column is sorted in ascending order corresponding to the number in the second column ie. this matrix should become
asorted = [1 3; 2 3; 1 2; 2 2; 3 2; 1 1; 2 1; 3 1]
how can this be done automatically

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 18 Okt. 2013
Bearbeitet: Andrei Bobrov am 18 Okt. 2013
asorted = sortrows(a,[-2 1])

Weitere Antworten (0)

Kategorien

Mehr zu Shifting and Sorting Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by