bitwise_and(x1, x2, /[, out, where, …])
bitwise_and
Compute the bit-wise AND of two arrays element-wise.
bitwise_or(x1, x2, /[, out, where, casting, …])
bitwise_or
Compute the bit-wise OR of two arrays element-wise.
bitwise_xor(x1, x2, /[, out, where, …])
bitwise_xor
Compute the bit-wise XOR of two arrays element-wise.
invert(x, /[, out, where, casting, order, …])
invert
Compute bit-wise inversion, or bit-wise NOT, element-wise.
left_shift(x1, x2, /[, out, where, casting, …])
left_shift
Shift the bits of an integer to the left.
right_shift(x1, x2, /[, out, where, …])
right_shift
Shift the bits of an integer to the right.
packbits(a[, axis, bitorder])
packbits
Packs the elements of a binary-valued array into bits in a uint8 array.
unpackbits(a[, axis, count, bitorder])
unpackbits
Unpacks elements of a uint8 array into a binary-valued output array.
binary_repr(num[, width])
binary_repr
Return the binary representation of the input number as a string.