MATLAB Function Reference | ![]() ![]() |
Syntax
Description
C = bitxor(A,B)
returns the bit-wise XOR of the two arguments A
and B
. Both A
and B
must be integers. You can ensure this by using the ceil
, fix
, floor
, and round
functions.
Examples
The five-bit binary representations of the integers 13 and 27 are 01101 and 11011, respectively. Performing a bit-wise XOR on these numbers yields 10110, or 22.
See Also
bitand
, bitcmp
, bitget
, bitmax
, bitor
, bitset
, bitshift
![]() | bitshift | blanks | ![]() |