How do we sort scalar value in ranks?

2 ビュー (過去 30 日間)
Mira le
Mira le 2021 年 5 月 2 日
回答済み: Sanman 2021 年 5 月 25 日
Hello everyone, I have struct R bellow, I sort these sequence in ascending order according to Weights values, Now I want to rank them, if weights values are the same so I put them in the same rank and have the same value:
R:
sequence Cost Weights Rank
1x197 double [4;0;0;184] 188 1
1x197 double [4;0;0;189] 193 1
1x197 double [4;0;0;189] 193 1
1x197 double [4;0;0;190] 194 1
1x197 double [4;0;0;191] 195 1
1x197 double [4;0;0;192] 196 1
1x197 double [4;0;0;192] 196 1
The result that I want to obtain is this
sequence Cost Weights Rank
1x197 double [4;0;0;184] 188 1
1x197 double [4;0;0;189] 193 2
1x197 double [4;0;0;189] 193 2
1x197 double [4;0;0;190] 194 3
1x197 double [4;0;0;191] 195 4
1x197 double [4;0;0;192] 196 5
1x197 double [4;0;0;192] 196 5
Thank you

採用された回答

Sanman
Sanman 2021 年 5 月 25 日
Hi Mira,
Since you already have your structure field “weights” sorted, you can make use of “unique” function here. MATLAB function “unique” returns unique values in array, along with the rank as well.
The following command should return the rank of the weights as you expect.
>> [~,~,rank] = unique(R.Weights)
You can also refer to this documentation page for further reference.
https://www.mathworks.com/help/matlab/ref/double.unique.html

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

タグ

製品


リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by