Find logical exclusive-OR
C = xor( performs a logical
exclusive-OR of arrays A,B)A and B and returns an
array containing elements set to either logical 1 (true) or
logical 0 (false). An element of the output array is set to
logical 1 (true) if A or B,
but not both, contains a nonzero element at that same array location. Otherwise, the
array element is set to 0.
For bit-wise logical XOR operations, see bitxor.