mindspore.ops.Neg

class mindspore.ops.Neg[源代码]

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

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

支持平台:

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]