Returns the set of elements that are in one set but not in the other.
Use this to perform set operation "relative complement", which is analogous to a subtraction.
menu: veeos ==> Math ==> Sets ==> setComplement
library: mathLib
setComplement( [2 3 4 3 5 5 3 1] , [6 3 4 7 1] ) returns [2 5]
setComplement is equivalent to a subtraction of two sets, as in the area of a
Venn diagram that is part of set A but not part of set B.
VEE 7.0+, all platforms
isElement, setAND, setOR, unique