z=bitxor(x,y)| Inputs | |
x |
A one dimensional integer array or scalar. |
y |
A one dimensional integer array of the same size as x or a scalar.
|
| Outputs | |
z |
An integer array. If x is an array, z is of the same size as x . Otherwise the size of z is same as the size of
y .
|
>>bitxor([1 2 4 5],2)
3 0 6 7