mindspore.ops.neg

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

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

\[out_{i} = - input_{i}\]
参数:
  • input (Tensor) - Neg的输入Tensor,数据类型为数值型。

返回:

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

异常:
  • TypeError - input 不是Tensor。

支持平台:

Ascend GPU CPU

样例:

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