How to quickly find the indecies of elements in an array?
    7 ビュー (過去 30 日間)
  
       古いコメントを表示
    
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 件のコメント
採用された回答
  per isakson
      
      
 2021 年 5 月 23 日
        
      編集済み: per isakson
      
      
 2021 年 5 月 23 日
  
      A = [1 9 2 8 3 7 4 6 5];
B = [5 6 7];
[~,ix] = ismember( B, A )
0 件のコメント
参考
カテゴリ
				Help Center および File Exchange で Matrix Indexing についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


