Clear Filters
Clear Filters

Find common elements(?) in two arrays

8 views (last 30 days)
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?

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 24 Jun 2013
Edited: Azzi Abdelmalek on 24 Jun 2013
[ii,jj]=find(A==B)
% you can add
out=[ii jj]

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!