Find common elements(?) in two arrays

21 visualizzazioni (ultimi 30 giorni)
PJM
PJM il 24 Giu 2013
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?

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 24 Giu 2013
Modificato: Azzi Abdelmalek il 24 Giu 2013
[ii,jj]=find(A==B)
% you can add
out=[ii jj]

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by