フィルターのクリア

find dublicated value in a column and return the whole row

1 回表示 (過去 30 日間)
Martin
Martin 2018 年 10 月 22 日
コメント済み: madhan ravi 2018 年 10 月 22 日
imagine I have this:
A = [ 1 ; 3 ; 5 ; 6 ; 9 ]
and
B = [ 1 4 ; 2 7 ; 3 5 ; 9 10 ]
I need to end up with:
C = [ 1 4 ; 3 5 ; 9 10 ]
In B(:,1) column I need to find those from A that match, and if so, return the full rows of B. Hope I am clear

採用された回答

madhan ravi
madhan ravi 2018 年 10 月 22 日
A = [ 1 ; 3 ; 5 ; 6 ; 9 ]
B = [ 1 4 ; 2 7 ; 3 5 ; 9 10 ]
idx=ismember(B(:,1),A)
C = B(idx,:)
  3 件のコメント
Martin
Martin 2018 年 10 月 22 日
thanks bro
madhan ravi
madhan ravi 2018 年 10 月 22 日
Anytime :)

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by