给出以下字符串的单元格数组:
a(1) = {{'one', 'two', 'three', 'four'}}
a(2) = {{'one', 'two', 'four', 'five'}}
a(3) = {{'four', 'five', 'six', 'seven'}}
b = {'one', 'two'}
有没有办法检查b
的每个子单元格中是否包含a
中的两个字符串?
在我的示例中a(1)
和a(2)
会满足此要求。
答案 0 :(得分:4)
>> cellfun(@(x) all(ismember(b, x)), a)
ans =
1 1 0