How to rank a vector with repeats without MATLAB unique?
3 次查看(过去 30 天)
显示 更早的评论
Hi everybody,
I need to rank a vector and currently i'm using this two commands:
data_s=sort(data); [~,rank]=ismember(data,data_s);
For a vector data=[1 1 1 2 2 2 3 3 3] i get i=[1 1 1 4 4 4 7 7 7], but instead i would like to get i=[1 1 1 2 2 2 3 3 3], without using MATLAB function 'unique'. Anybody has any suggestion?
Thanks in advance.
3 个评论
Guillaume
2016-6-27
"without using MATLAB function unique" Why?
It's possible to get the same output as unique using any of the set functions ismember, setdiff, union, etc., because internally they all call unique. But in that case, why not call unique directly?
If the reason is because it's an assignment, then using any of these functions just to avoid unique is probably not going to earn you a good mark. I would think that you'd be expected to come up with your own unique algorithm.
回答(2 个)
Jan Orwat
2016-6-27
Do you want to replicate following behaviour?
[~, ~, rank] = unique(data);
rank = rank.';
There are thousands of ways to do that. For example:
[foo, bar] = sort(data);
rank(bar) = cumsum([1, diff(foo)~=0]);
But, as the cyclist wrote, are you sure?
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!