MATLAB Function Reference
  Go to function:
    Search    Help Desk 
bitand    Examples   See Also

Bit-wise AND

Syntax

Description

C = bitand(A,B) returns the bit-wise AND of two nonnegative integer arguments A and B. To ensure the operands are integers, use 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 AND on these numbers yields 01001, or 9.

See Also

bitcmp      Complement bits

bitget      Get bit

bitmax      Maximum floating-point integer

bitor       Bit-wise OR

bitset      Set bit

bitshift    Bit-wise shift

bitxor      Bit-wise XOR



[ Previous | Help Desk | Next ]