How do I get MATLAB to automatically create a vector of unique values based on a known vector of values?
2 ビュー (過去 30 日間)
古いコメントを表示
Let's say I have a vector of known values:
A = [10;20;30;100;200;10;20;30;40;50];
I'm looking for a way to get MATLAB to automatically create vector B of unique values, based on A.
So for the 7 unique values in A, B = [1;2;3;4;5;6;7]
Is there a way to make this happen?
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 10 月 17 日
編集済み: Azzi Abdelmalek
2013 年 10 月 17 日
A=[10;20;30;100;200;10;20;30;40;50];
B=1:numel(unique(A))
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!