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

 Réponse acceptée

Star Strider
Star Strider le 27 Nov 2018
Modifié(e) : Star Strider le 27 Nov 2018

1 vote

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 commentaires

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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by