Find common elements(?) in two arrays

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?

 採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 6 月 24 日
編集済み: Azzi Abdelmalek 2013 年 6 月 24 日

1 投票

[ii,jj]=find(A==B)
% you can add
out=[ii jj]

1 件のコメント

PJM
PJM 2013 年 6 月 24 日
thanks a lot!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by