If I understand correctly, it looks like you're describing `C = setdiff(A, B)`. http://docs.julialang.org/en/release-0.4/stdlib/collections/#Base.setdiff
On Saturday, April 16, 2016 at 12:05:39 PM UTC-4, digxx wrote: > > Say I have 2 arrays > A=[1,2,3,4,5,6] > B=[1,6,7] > and the resulting array > C=[2,3,4,5] = A NOT B results from a logical operation > Is there already something implemented like this? >
