xor

Type: External

Group: matrix

Syntax

answer = xor(matrix1, matrix2)

Description

Returns the boolean xor of the elements of two matrices.

Examples

xor([1,0;0,1], [1,1;0,0]) = [0,1;0,1]

See Also

and, or