remove cell values of a column vector not contained in another column vector

2 ビュー (過去 30 日間)
Micangi
Micangi 2021 年 3 月 26 日
コメント済み: Rik 2021 年 3 月 27 日
I have two column vectors:
A=[1; 2; 3; 4; 5; 6]
B=[1; 3; 4; 6]
I would like to obtain a column vector that cointain only the cell values of A not contained also in B and, therefore:
C=[2; 5]
I don't want to use loop function beacause I've to analyse huge vectors.

回答 (1 件)

Rik
Rik 2021 年 3 月 26 日
編集済み: Rik 2021 年 3 月 26 日
doc ismember
And maybe setdiff will do the trick as well.
  2 件のコメント
Micangi
Micangi 2021 年 3 月 27 日
I've tried but I am not able to do it
Rik
Rik 2021 年 3 月 27 日
What did you try? Show us the code you tried. Simply using the ismember function directly on your two example vectors will be almost all you need already.

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

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by