This is documentation for an old release of NumPy (version 1.3.). Read this page in the documentation of the latest stable release (version > 1.17).
Shift the bits of an integer to the right.
Bits are shifted to the right by removing x2 bits at the right of x1. Since the internal representation of numbers is in binary format, this operation is equivalent to dividing x1 by 2**x2.
Parameters: | x1 : array_like, int
x2 : array_like, int
|
---|---|
Returns: | out : ndarray, int
|
See also
Examples
>>> np.right_shift(10, [1,2,3])
array([5, 2, 1])