Finding the indices of the elements of one array in another
    193 views (last 30 days)
  
       Show older comments
    
Given two vectors A and B, find the index, idx into A of the element of B so that
A(idx)=B.
Now I know there must be many ways it can be done, but is there a one-liner?
For example if
A=[3 4 5 6 7];
B=[6 4 7];
then
[tf,loc]=ismember(A,B);
idx=[1:length(A)];
idx=idx(tf);
idx=idx(loc(tf));
disp(A(idx))
will do it but that is four steps. Is there a more elegant way?
3 Comments
  Philip
 on 26 Sep 2014
				MATLAB supports logical indexing. No need to use "find":
A = A( ismember( A, B ) );
Accepted Answer
  Sven
      
 on 3 Dec 2011
        
      Edited: MathWorks Support Team
    
 on 9 Nov 2018
  
      There are a few options to get the indices you are looking for. The following output indices (idx) preserve the order in A of the shared values:
[sharedvals,idx] = intersect(A,B,’stable’)
You can also use the following command if the order in A is not necessary:
[tf,idx] = ismember(B,A)
3 Comments
  tc88
 on 22 Aug 2016
				meanwhile, the functionality of intersect has changed and a one-line solution is also possible using intersect:
[sharedVals,idxsIntoA] = intersect(B,A,'stable')
Be aware that the order of A and B must be changed, since the order of the first argument is retained.
More Answers (6)
  Alan
      
 on 6 Dec 2011
        2 Comments
  John Sogade
 on 2 Jan 2020
				obviously this will fail to get A(idx), if any elements of idx are 0 (i.e. B not in A) and robust usage should be clarified to  A(idx(idx ~= 0)). 
  Iftikhar Ali
 on 18 Oct 2015
        I am facing an issue finding indices of element matching in two arrays.
xpts = [0 0.0004 0.0011 0.0018 0.0025 0.003]; x = 0:0.0001:0.003; index1 = find(ismember(x, xpts));
It returns index1 = [1 5 12 26 31]
but there is one more element '0.0018' in x which also belongs xpts, and not including in the answer.
Similarly when I increase the number of points in x, there are few elements that are missed or not recognized by the find command. What's going wrong here.
0 Comments
  Teja Muppirala
    
 on 3 Dec 2011
        If A is sorted, then I think this is probably the easiest (and also fastest?) way to do it.
[~,idx] = histc(B,A)
If A is not sorted, then:
[As,s_idx] = sort(A);
[~,tmp] = histc(B,As);
idx = s_idx(tmp)
0 Comments
  Stephen Politzer-Ahles
 on 8 Jul 2014
        
      Edited: Stephen Politzer-Ahles
 on 8 Jul 2014
  
      The following should also work for your situation, and just needs one line:
A=[3 4 5 6 7];
B=[6 4 7];
idx = arrayfun( @(x)( find(A==x) ), B );
0 Comments
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!










