Owning Class: boolean
Requires: MathScript RT Module
c = xor(a, b)
Computes the exclusive or of corresponding elements of two input matrices.
| Name | Description |
|---|---|
| a | Specifies a scalar, vector, or matrix of Boolean values. |
| b | Specifies a scalar, vector, or matrix of Boolean values. b must be the same size as a. |
| Name | Description |
|---|---|
| c | Returns Boolean values, where an element in c is 1 if and only if one but not both of the corresponding elements in a or b is non-zero. Otherwise, the element is 0. c is a scalar, vector, or matrix of the same size as a. |
A = [1, 0]
B = [1, 1]
C = xor(A, B)