フィルターのクリア

array. find if one element or another is in the array

3 ビュー (過去 30 日間)
Patrick Brown
Patrick Brown 2017 年 2 月 1 日
回答済み: Star Strider 2017 年 2 月 1 日
Hi, I have to vectors A and B I want to find if the elements of B are in A if whatever of the elements of B are in A, I want to get a 1 in the position where the element is if not a 0
for example A=[1 2 3 4 5] B=[1 3] c= 1 0 1 0 0
thanks

採用された回答

Star Strider
Star Strider 2017 年 2 月 1 日
The ismember function does exactly that:
A=[1 2 3 4 5];
B=[1 3];
Out = ismember(A, B)
Out =
1×5 logical array
1 0 1 0 0

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by