How to compare an array with 2D matrix?
1 回表示 (過去 30 日間)
古いコメントを表示
採用された回答
その他の回答 (1 件)
Image Analyst
2016 年 10 月 21 日
Try ismember() with the 'rows' option:
[~, matchingRows] = ismember(A, B, 'rows')
3 件のコメント
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)
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!