numpy.positive#
- numpy.positive(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature]) = <ufunc 'positive'>#
数值正数,按元素计算。
版本 1.13.0 中的新功能。
- 参数:
- xarray_like 或标量
输入数组。
- 返回值:
- yndarray 或标量
返回的数组或标量:y = +x。如果x 是标量,则为标量。
注释
等效于x.copy(),但仅针对支持算术运算的类型定义。
示例
>>> import numpy as np
>>> x1 = np.array(([1., -1.])) >>> np.positive(x1) array([ 1., -1.])
一元
+
运算符可用作 ndarray 上np.positive
的简写。>>> x1 = np.array(([1., -1.])) >>> +x1 array([ 1., -1.])