Rank the entries of a matrix with codes.
조회 수: 1 (최근 30일)
이전 댓글 표시
Load a matrix:
[12 4 6;
7 3 8;
1 6 5;
9 2 5]
How to rank each row relative to columns with codes as:
3 1 2
2 1 3
1 3 2
3 1 2
Thank you very much.
댓글 수: 0
채택된 답변
Walter Roberson
2023년 5월 16일
A = [12 4 6;
7 3 8;
1 6 5;
9 2 5]
[~, idx] = sort(A, 2)
[~, rank] = sort(idx, 2)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Linear Algebra에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!