Set Operands

If both A and B are finite sets, then A \B is the difference between set A and B:

For example
>> A = {3, -5, "abc", 9, 10, -7};
>> B = {9, -3, "abc", -7, -3};
>> A \ B
    {3, -5, 10}



oz 2009-12-22