<< true | Logical type functions |
R = xor(V1, V2) |
R = xor(V1, V2, ... , VN) |
a matrix.
a matrix, same dimensions than V1.
a matrix, same dimensions than V1.
a logical matrix.
xor performs a logical exclusive-OR.
x = [0 1 0 1];
y = [0 0 1 1];
R = xor(x, y)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET