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!