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!