How to look for a list insto an other list
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Gimpy
le 5 Août 2014
Réponse apportée : Sean de Wolski
le 5 Août 2014
Hi, I have the following list:
lookfor={'ab' 'cd' 'ef' 'ab' 'cd''gh' 'ij' 'ab' 'cd'}
into={'ab' 'cd' 'ef' 'gh' 'ij'}
I would like to know the colunm number for each element in "into" reults: [1 2 3 1 2...]
0 commentaires
Réponse acceptée
Sean de Wolski
le 5 Août 2014
lookf={'ab' 'cd' 'ef' 'ab' 'cd' 'gh' 'ij' 'ab' 'cd'}
into={'ab' 'cd' 'ef' 'gh' 'ij'}
[~, idx] = ismember(into,lookf)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Solar Power 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!