MATLAB: Setdiff with reptitions

arrays

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

Best Answer

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.