mindspore.ops.Atan2

class mindspore.ops.Atan2[源代码]

逐元素计算x/y的反正切值。

更多细节请参考 mindspore.ops.atan2()

支持平台:

Ascend CPU GPU

样例:

>>> x = Tensor(np.array([0, 1]), mindspore.float32)
>>> y = Tensor(np.array([1, 1]), mindspore.float32)
>>> atan2 = ops.Atan2()
>>> output = atan2(x, y)
>>> print(output)
[0.        0.7853982]