原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.exp2.html
校对:(虚位以待)
numpy.
exp2
(x[, out]) = <ufunc 'exp2'>对于输入数组中的所有p,计算2 ** p。
参数: | x:array_like
out:ndarray,可选
|
---|---|
返回: | out:ndarray
|
也可以看看
笔记
版本1.3.0中的新功能。
例子
>>> np.exp2([2, 3])
array([ 4., 8.])