corresponding index of an element
Ältere Kommentare anzeigen
I have two vectors
g_counter = [2 0]
and
list = [3 0]
I would get the indices of all the elements belong to g_counter that have their position setted to zero and the corresponding position of list vector has to be setted to 0.
For instance with the given vectors I would get 2 as index. How can I do?
1 Kommentar
Azzi Abdelmalek
am 10 Nov. 2012
your question is not clear
Akzeptierte Antwort
Weitere Antworten (1)
idx = find(g_counter == 0 & list == 0);
or
idx = find(~g_counter & ~list);
or
idx = find(g_counter - list == g_counter + list);
1 Kommentar
Salvatore Mazzarino
am 10 Nov. 2012
Kategorien
Mehr zu Matrix Indexing finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!