finding the position of values in a matrix

5 ビュー (過去 30 日間)
sampath kumar punna
sampath kumar punna 2019 年 10 月 30 日
コメント済み: sampath kumar punna 2019 年 10 月 30 日
i have set
X=[
12 14
1 2
12 4
6 14
12 18
12 4
1 2]
Y=[
1 2
1 2
6 14
12 4]
can i get the position of Y elements in X matrix as the number are repeated its hard for me to find using code normal code. can any one please help me.

回答 (1 件)

galaxy
galaxy 2019 年 10 月 30 日
Try
[~,idx]=setdiff(X,Y,'rows');
idx_rows=setdiff(1:size(X,1),idx);
idx_rows =
2 3 4 6 7
  3 件のコメント
galaxy
galaxy 2019 年 10 月 30 日
because X and Y array has same value, if you want to find only one, you need use unique function
sampath kumar punna
sampath kumar punna 2019 年 10 月 30 日
yes X and Y have same values but Y is not having all values of X only few values are in Y, so for those some values in Y, what is the position in X.

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

カテゴリ

Help Center および File ExchangeOperators and Elementary Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by