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일

1 개 추천

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일

2 개 추천

Try ismember() with the 'rows' option:
[~, matchingRows] = ismember(A, B, 'rows')

댓글 수: 3

Emmanuel
Emmanuel 2016년 10월 21일
Thanks!! That was really helpul. Is there a way I could return the indices? Also, it doesn't work when I have same elements multiple time in my MAtrix B. A returns only the first match in B, whereas the other matches are not getting noticed.
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..

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

질문:

2016년 10월 21일

댓글:

2016년 10월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by