Using ismember on vector with strings
6 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I am wonderinh whether I can write something like this:
If any(ismember(result , [" nafor", "kform", "acet"]))
0 件のコメント
採用された回答
meghannmarie
2019 年 10 月 3 日
編集済み: meghannmarie
2019 年 10 月 3 日
if you are trying to match string to string, try this:
if any(contains([' nafor','kform','acet'],result))
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!