find subset of a set

39 ビュー (過去 30 日間)
jana
jana 2013 年 6 月 7 日
I created a variable that stores a set of numbers for an arc (a,b). Sc{1,2} = [1]; Sc{2,1} = [1]; Sc{1,3} = [2]; Sc{3,1} = [2]; Sc{3,4} = [2]; Sc{4,3} = [2]; Sc{2,4} = [1]; Sc{4,2} = [1];
I would like to implement the following condition:
s{1} = [1,2];
for v = 1:n,
if s{v} is a subset of s{u}
s{v} = intersect( s{u},Sc{u,v});
end;
end;
where u is the previous node. I dont know how to code if s{v} is a subset of s{u}' in matlab. Please help.

採用された回答

Doug Hull
Doug Hull 2013 年 6 月 7 日
>> all(ismember([1 3], [2 4]))
ans =
0
>> all(ismember([1 3], [1 3 2 4]))
ans =
1
>> all(ismember([1 3], [1 2 4]))
ans =
0

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Objects についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by