Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
リストを並べ替えて、MATLABで値の初期インデックスを取得する方法。
e.g orignal A=[40;30;20;50;60] sorted A=[20;30;40;50;60] indices of sorted A in orignal A =[3;2;1;4;5]
単純:
[並べ替え、インデックス] = sort(A);
2番目の出力を使用できます。
[~,i]=sort([40;30;20;50;60])
tildaは、最初の出力が無視されることを意味します。