Rank the entries of a matrix with codes.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Wan-Yi Chiu
el 16 de Mayo de 2023
Respondida: Walter Roberson
el 16 de Mayo de 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.
0 comentarios
Respuesta aceptada
Walter Roberson
el 16 de Mayo de 2023
A = [12 4 6;
7 3 8;
1 6 5;
9 2 5]
[~, idx] = sort(A, 2)
[~, rank] = sort(idx, 2)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear Algebra en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!