numpy.exp2()

numpy.exp2

numpy.exp2(x[, out]) =

Calculate 2**p for all p in the input array.

Parameters:

x : array_like

Input values.

out : ndarray, optional

Array to insert results into.

Returns:

out : ndarray

Element-wise 2 to the power x.

See also

power

Notes

New in version 1.3.0.

Examples

>>> np.exp2([2, 3])
array([ 4.,  8.])

© 2008–2016 NumPy Developers
Licensed under the NumPy License.
https://docs.scipy.org/doc/numpy-1.10.1/reference/generated/numpy.exp2.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部