How to arrange indices of matrix A by descending order ?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Pradya Panyainkaew
am 26 Dez. 2017
Kommentiert: Star Strider
am 26 Dez. 2017
if I have
A=[25,41,38] when I sort this matrix by descending order , I will get A=[41,38,21]
I want to arrange indices of matrix A by descending order and shows a result (B) like this
B=[2,3,1]
How to create program to get this result ?
Thanks in advance.
0 Kommentare
Akzeptierte Antwort
Star Strider
am 26 Dez. 2017
To get ‘B’, ask for the second output from sort:
A=[25,41,38];
[A_sorted,B] = sort(A, 'descend')
A_sorted =
41 38 25
B =
2 3 1
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Shifting and Sorting Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!