getting index of elements
古いコメントを表示
I have two vectors
g_vector = [2 0]
list = [3 0]
I would get the index of elements of g_vector that have their index in list matrix setted to 0. How can I do?
If I do
g_counter(list == 0)
I get 0 element of g_vector but I would have returned index 2 corresponding to the index of 0 in g_vector
1 件のコメント
Azzi Abdelmalek
2012 年 11 月 10 日
回答 (2 件)
Matt J
2012 年 11 月 10 日
find(list==0)
4 件のコメント
Salvatore Mazzarino
2012 年 11 月 10 日
Salvatore Mazzarino
2012 年 11 月 10 日
編集済み: Salvatore Mazzarino
2012 年 11 月 10 日
Salvatore Mazzarino
2012 年 11 月 10 日
編集済み: Salvatore Mazzarino
2012 年 11 月 10 日
Matt J
2012 年 11 月 10 日
find(g_counter==0 & list==0)
Image Analyst
2012 年 11 月 10 日
Perhaps one of these
index = find(g_counter == list(2))
index = find(g_counter == list(list==0))
カテゴリ
ヘルプ センター および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!