Find common elements(?) in two arrays
    5 views (last 30 days)
  
       Show older comments
    
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?
0 Comments
Accepted Answer
  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)
See Also
Categories
				Find more on Logical in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
