Rank the entries of a matrix with codes.

1 Ansicht (letzte 30 Tage)
Wan-Yi Chiu
Wan-Yi Chiu am 16 Mai 2023
Beantwortet: Walter Roberson am 16 Mai 2023
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.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 16 Mai 2023
A = [12 4 6;
7 3 8;
1 6 5;
9 2 5]
A = 4×3
12 4 6 7 3 8 1 6 5 9 2 5
[~, idx] = sort(A, 2)
idx = 4×3
2 3 1 2 1 3 1 3 2 2 3 1
[~, rank] = sort(idx, 2)
rank = 4×3
3 1 2 2 1 3 1 3 2 3 1 2

Weitere Antworten (0)

Kategorien

Mehr zu Interpolation finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by