Finding the index (rank) of a specific number from a column
2 ビュー (過去 30 日間)
古いコメントを表示
Suppose I have a column B = [ 1 4 8 3 5 9]
and I have another vector = [ 8]
In this case, I want to find the rank where it's matched in the vector which should return a value of 3 (3rd). How do I do that ?
3 件のコメント
採用された回答
Walter Roberson
2018 年 12 月 10 日
[~, idx] = ismember(8, B)
3 件のコメント
Walter Roberson
2018 年 12 月 10 日
just_a_variable = 8;
[~, rank_that_you_are_looking_for_this_is_the_result_that_you_want] = ismember(just_a_variable, B);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!