sort each row of a matrix in a descending order
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Shifting and Sorting Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!