Removing certain rows from B using A as reference to produce C

1 回表示 (過去 30 日間)
JL
JL 2019 年 9 月 1 日
コメント済み: JL 2019 年 9 月 1 日
Hi everyone, I have A and B. I would like to use the values of A as reference to remove rows in B to get C
A =[11;
12;
14;];
B = [9 45996;
9 47540;
12 49047;
15 49151;
12 53151;
13 53239;
10 56044;
11 57046;
14 57279;
10 59286;
10 59889;];
Answer C
c = [12 49047;
12 53151;
11 57046;
14 57279;];

採用された回答

madhan ravi
madhan ravi 2019 年 9 月 1 日
c = B(ismember(B(:,1),A),:)

その他の回答 (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