R = xor(V1, V2)
R = xor(V1, V2, ... , VN)
| Parameter | Description |
|---|---|
| V1 | a matrix. |
| V2 | a matrix, same dimensions than V1. |
| VN | a matrix, same dimensions than V1. |
| Parameter | Description |
|---|---|
| R | 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 |