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 CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by