How to arrange indices of matrix A by descending order ?

2 ビュー (過去 30 日間)
Pradya Panyainkaew
Pradya Panyainkaew 2017 年 12 月 26 日
コメント済み: Star Strider 2017 年 12 月 26 日
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.

採用された回答

Star Strider
Star Strider 2017 年 12 月 26 日
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 件のコメント
Pradya Panyainkaew
Pradya Panyainkaew 2017 年 12 月 26 日
Thank you very much.
Star Strider
Star Strider 2017 年 12 月 26 日
As always, my pleasure.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeShifting and Sorting Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by