필터 지우기
필터 지우기

Find common elements(?) in two arrays

조회 수: 8 (최근 30일)
PJM
PJM 2013년 6월 24일
For example,
A=[2 2 2; 0 0 1; 1 2 3], B=[1 2 3; 2 2 2; 2 2 0]
then I want to find the point of common elements between A,B
answer of the point is: (i,j)=(1,2),(3,2)
how can I find points?

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 6월 24일
편집: Azzi Abdelmalek 2013년 6월 24일
[ii,jj]=find(A==B)
% you can add
out=[ii jj]

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by