numpy.正#
- 麻木的。Positive ( x , / , out=None , * , where=True , casting='same_kind' , order='K' , dtype=None , subok=True [ , signature , extobj ] ) = <ufunc 'positive'> #
数值为正,按元素计算。
1.13.0 版本中的新增功能。
- 参数:
- x类数组或标量
输入数组。
- 返回:
- y ndarray 或标量
返回的数组或标量:y = +x。如果x是标量,则这是标量。
笔记
相当于x.copy(),但仅为支持算术的类型定义。
例子
>>> x1 = np.array(([1., -1.])) >>> np.positive(x1) array([ 1., -1.])
一元运算符
+
可以用作np.positive
ndarray 的简写。>>> x1 = np.array(([1., -1.])) >>> +x1 array([ 1., -1.])