mindspore.ops.Neg

class mindspore.ops.Neg[源代码]

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

更多参考详见 mindspore.ops.neg()

输入:
  • x (Tensor) - Neg的输入,其数据类型为数值型。

输出:

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

支持平台:

Ascend GPU CPU

样例:

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