Using ismember on vector with strings
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
I am wonderinh whether I can write something like this:
If any(ismember(result , [" nafor", "kform", "acet"]))
0 Commenti
Risposta accettata
meghannmarie
il 3 Ott 2019
Modificato: meghannmarie
il 3 Ott 2019
if you are trying to match string to string, try this:
if any(contains([' nafor','kform','acet'],result))
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Characters and Strings in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!