How to quickly find the indecies of elements in an array?
    7 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Benson Gou
      
 el 23 de Mayo de 2021
  
    
    
    
    
    Comentada: Torsten
      
      
 el 23 de Mayo de 2021
            Dear All,
I have an array A which contains integers. I have another array B. I want to find out the indecis of B in A. 
For example, A = [1 9 2 8 3 7 4 6 5], B = [5 6 7]. The indecis of B in A is [9 8 6]. 
Thanks.
Benson
0 comentarios
Respuesta aceptada
  per isakson
      
      
 el 23 de Mayo de 2021
        
      Editada: per isakson
      
      
 el 23 de Mayo de 2021
  
      A = [1 9 2 8 3 7 4 6 5];
B = [5 6 7];
[~,ix] = ismember( B, A )
0 comentarios
Ver también
Categorías
				Más información sobre Matrix Indexing en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


