How to compare an array with 2D matrix?
이전 댓글 표시
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?
채택된 답변
추가 답변 (1개)
Image Analyst
2016년 10월 21일
Try ismember() with the 'rows' option:
[~, matchingRows] = ismember(A, B, 'rows')
댓글 수: 3
Emmanuel
2016년 10월 21일
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
2016년 10월 21일
카테고리
도움말 센터 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!