Using ismember on vector with strings
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Muazma Ali
am 3 Okt. 2019
Kommentiert: Muazma Ali
am 4 Okt. 2019
Hi,
I am wonderinh whether I can write something like this:
If any(ismember(result , [" nafor", "kform", "acet"]))
0 Kommentare
Akzeptierte Antwort
meghannmarie
am 3 Okt. 2019
Bearbeitet: meghannmarie
am 3 Okt. 2019
if you are trying to match string to string, try this:
if any(contains([' nafor','kform','acet'],result))
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Characters and Strings 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!