how to sort only first column in matlab
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
abdul wahab aziz
le 27 Août 2016
Réponse apportée : Star Strider
le 27 Août 2016
X=0.5 1.0;0.1 2;2.5 4 output must be like 0.1 2;0.5 1.0;2.5 4
0 commentaires
Réponse acceptée
Star Strider
le 27 Août 2016
Use the sortrows funciton:
X = [0.5 1.0;0.1 2;2.5 4];
Output = sortrows(X, 1)
Output =
0.1 2
0.5 1
2.5 4
0 commentaires
Plus de réponses (0)
Voir également
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!