Effacer les filtres
Effacer les filtres

Finding indices when vectors is used

2 vues (au cours des 30 derniers jours)
Mateusz
Mateusz le 20 Fév 2012
Modifié(e) : Matt J le 17 Oct 2013
Assume we have x = [1,2,3,1]; If I execute idx = find(x == 1) then idx == [1,4]. Is there similar command for extracting more indices I am interested in, something like find(x == [1,3]) == [1,3,4].
Of course I would like to avoid loops.
-- Ok, but what if we allow repetitions? For instance: find(x == [1,3,1]) == [1,1,3,4,4] Can we do this without using loops?

Réponse acceptée

the cyclist
the cyclist le 20 Fév 2012
I think you want the ismember() command.
  2 commentaires
Mateusz
Mateusz le 20 Fév 2012
Looks exactly what I am looking for, thanks :)
Mateusz
Mateusz le 20 Fév 2012
Ok, but what if we allow repetitions? For instance: find(x == [1,3,1]) == [1,1,3,4,4] Can we do this without using loops?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by