mindspore.ops.neg

mindspore.ops.neg(x)[源代码]

计算输入x的相反数并返回。

\[out_{i} = - x_{i}\]

参数:

  • x (Tensor) - Neg的输入,shape: \((N, *)\) ,其中 \(*\) 表示任意数量的附加维度。秩应小于8。其数据类型为数值型。

返回:

Tensor,shape和类型与输入相同。

异常:

  • TypeError - x 不是Tensor。

支持平台:

Ascend GPU CPU

样例:

>>> x = Tensor(np.array([1, 2, -1, 2, 0, -3.5]), mindspore.float32)
>>> output = ops.neg(x)
>>> print(output)
[-1.  -2.   1.  -2.   0.   3.5]