setdiff with reptitions ?

i have two array A ,B i need to know all elements that inside A but not B including reptitons ,thx .

 Risposta accettata

Star Strider
Star Strider il 27 Nov 2018
Modificato: Star Strider il 27 Nov 2018
Experiment with the ismember (link) funciton or if you are using floating-point numbers, ismembertol (link):
A = randi(9, 1, 10)
B = randi(5, 1, 8)
L = ismember(A, B)
Out = A(L)
or:
Out = A(~L)
depending on the result you want.

2 Commenti

daniel zayed
daniel zayed il 27 Nov 2018
thx :)
Star Strider
Star Strider il 27 Nov 2018
As always, my pleasure!

Accedi per commentare.

Più risposte (0)

Categorie

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by