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!