Calculate 2**p for all p in the input array.
x : array_like
Input values.
out : ndarray, optional
Array to insert results into.
out : ndarray
Element-wise 2 to the power x.
See also
Notes
New in version 1.3.0.
Examples
>>> np.exp2([2, 3]) array([ 4., 8.])
numpy.expm1
numpy.log
Enter search terms or a module, class or function name.