sort each row of a matrix in a descending order
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Suppose I have a matrix
[1 2 3
4 5 6
7 8 9]
I want to sort each row in a descending order so that it will be
[3 2 1
6 5 4
9 8 7]
I looked at sortrows before asking questions. https://www.mathworks.com/help/matlab/ref/double.sortrows.html#:~:text=B%20%3D%20sortrows(___%2C%20direction%20)%20sorts%20the%20rows%20of,'descend'%20for%20descending%20order.
0 commentaires
Réponse acceptée
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!