numpy.positive#
- numpy.positive(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature]) = <ufunc 'positive'>#
逐元素的数值正值.
在 1.13.0 版本加入.
- 参数:
- x类似数组或标量
输入数组.
- 返回:
- yndarray 或标量
返回的数组或标量:y = +x.如果 x 是标量,则这是一个标量.
备注
等同于 x.copy(),但仅定义为支持算术的类型.
示例
>>> import numpy as np
>>> x1 = np.array(([1., -1.])) >>> np.positive(x1) array([ 1., -1.])
一元
+
运算符可以用作 ndarrays 上np.positive
的简写.>>> x1 = np.array(([1., -1.])) >>> +x1 array([ 1., -1.])