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

6 views (last 30 days)
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.

Answers (1)

Rik
Rik on 26 Mar 2021
Edited: Rik on 26 Mar 2021
doc ismember
And maybe setdiff will do the trick as well.
  2 Comments
Rik
Rik on 27 Mar 2021
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.

Sign in to comment.

Categories

Find more on App Building in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!