sort each row of a matrix in a descending order
5 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Shifting and Sorting Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!