Effacer les filtres
Effacer les filtres

sort 3 column matrix by two key words

2 vues (au cours des 30 derniers jours)
HONG CHENG
HONG CHENG le 5 Déc 2017
Commenté : HONG CHENG le 5 Déc 2017
how to do this in matlab? sort the matrix raws first by the first column, then by the second column?
input = [
1 2 11
1 2 11
1 2 12
1 2 11
1 2 11
1 2 12
1 3 17
1 3 15
1 4 18
1 4 18
1 3 15
1 3 16
2 3 17
2 3 15
1 3 16
1 3 17
1 3 15
1 3 15
1 3 15
1 3 16
1 2 12
1 2 11
1 2 11
1 2 11
1 4 18
1 4 18
1 4 18
2 4 17
2 4 17
1 4 17
1 4 17
1 4 17
]
output = [1 2 11
1 2 11
1 2 12
1 2 11
1 2 11
1 2 12
1 2 12
1 2 11
1 2 11
1 2 11
1 3 17
1 3 15
1 3 15
1 3 16
1 3 16
1 3 17
1 3 15
1 3 15
1 3 15
1 3 16
1 4 18
1 4 18
1 4 18
1 4 18
1 4 18
1 4 17
1 4 17
1 4 17
2 3 17
2 3 15
2 4 17
2 4 17
]

Réponse acceptée

Walter Roberson
Walter Roberson le 5 Déc 2017
output sortrows(input, [1 2]);
  1 commentaire
HONG CHENG
HONG CHENG le 5 Déc 2017
thanks a lot, this function is what I need.
I also have another question, maybe you are interested in it too
that problem in the link is based on this problem.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Shifting and Sorting Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!