How to look for a list insto an other list
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Gimpy
am 5 Aug. 2014
Beantwortet: Sean de Wolski
am 5 Aug. 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 Kommentare
Akzeptierte Antwort
Sean de Wolski
am 5 Aug. 2014
lookf={'ab' 'cd' 'ef' 'ab' 'cd' 'gh' 'ij' 'ab' 'cd'}
into={'ab' 'cd' 'ef' 'gh' 'ij'}
[~, idx] = ismember(into,lookf)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Solar Power finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!