How to compare an array with 2D matrix?

1 回表示 (過去 30 日間)
Emmanuel
Emmanuel 2016 年 10 月 21 日
コメント済み: Emmanuel 2016 年 10 月 21 日
If I have an array A= [1,2] and matrix B= [3,4;8,6;1,2], How can I say that array A is present in B?

採用された回答

KSSV
KSSV 2016 年 10 月 21 日
doc ismember
  1 件のコメント
Emmanuel
Emmanuel 2016 年 10 月 21 日
Thanks a lot! It works!! You are very helpful

サインインしてコメントする。

その他の回答 (1 件)

Image Analyst
Image Analyst 2016 年 10 月 21 日
Try ismember() with the 'rows' option:
[~, matchingRows] = ismember(A, B, 'rows')
  3 件のコメント
Image Analyst
Image Analyst 2016 年 10 月 21 日
Emmanuel, try this:
A= [1,2]
B= [3,4;8,6;1,2; 4,5; 1,2]
[inA, inB] = ismember(B, A, 'rows')
matchingRows = find(inB)
Emmanuel
Emmanuel 2016 年 10 月 21 日
Yeah! That works. Thank you very much..

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by