Find all unique values and replace it with new values
4 次查看(过去 30 天)
显示 更早的评论
I have a vector with values
v = [0.23; 0.1; 0.33; 0.23 ; 0.33; 0.6; 0.6; 0.4];
I would like to find the unique values and replace the vector with numbers from 1, like
newV = [1; 2; 3; 1 ; 3; 4; 4; 5];
0 个评论
采纳的回答
Walter Roberson
2022-6-6
findgroups()
But since you are using floating point numbers you really should use the third output of uniquetol() instead
4 个评论
Image Analyst
2022-6-7
@Elysi Cochin I'm pretty sure you've seen the FAQ on this before but here it is again:
更多回答(2 个)
KSSV
2022-6-6
v = [0.23; 0.1; 0.33; 0.23 ; 0.33; 0.6; 0.6; 0.4];
[c,ia,newV] = unique(v,'stable') ;
newV
0 个评论
Image Analyst
2022-6-6
Will this do:
v = [0.23; 0.1; 0.33; 0.23 ; 0.33; 0.6; 0.6; 0.4];
% newV = [1; 2; 3; 1 ; 3; 4; 4; 5];
[g, Tid] = findgroups(v)
I know it doesn't match your desired but it's easy and maybe you don't need that exact order. If you need that exact order, can you explain why you need that order? (And don't jsut say I need it because I need it.)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!