ranking of vector with non-unique elements

I need to perform fast ranking of the vector with non-unique elements, like in the following example:
F = [10.1 31.0 20.5 20.5 10.1] -> rankF = [3 1 2 2 3]
So far I am using the following code:
[~,~,iFu] = unique(F,'stable');
[~,iFs] = sort(F,'descend');
[~,iFs] = sort(iFs);
[~, ~, rankF] = unique(iFs(iFu));
But, I am not sure if this code is really effective. Is there any better (faster) way how to solve this problem?

 Akzeptierte Antwort

Johannes Fischer
Johannes Fischer am 18 Sep. 2019

3 Stimmen

So you want to order starting with the highest value?
F = [10.1 31.0 20.5 20.5 10.1]
[~, ~, rankF] = unique(max(F)-F)

4 Kommentare

Michal
Michal am 18 Sep. 2019
well done ... thanks!!!
+1 I like it.
But the MAX is not needed.
[~, ~, rankF] = unique(-F)
Johannes Fischer
Johannes Fischer am 18 Sep. 2019
Oh right!
:)
Michal
Michal am 18 Sep. 2019
Even better ... thanks Bruno!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Produkte

Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by