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.binary_repr(10)
'1010'
>>> np.right_shift(10, 1)
5
>>> np.binary_repr(5)
'101'
>>> np.right_shift(10, [1,2,3])
array([5, 2, 1])