mindspore.ops.Atan2
- class mindspore.ops.Atan2[源代码]
逐元素计算x/y的反正切值。
更多细节请参考
mindspore.ops.atan2()
。- 输入:
x (Tensor) - 输入Tensor,shape: \((N,*)\) ,其中 \(*\) 表示任何数量的附加维度。
y (Tensor) - 输入Tensor,shape应能在广播后与 x 相同,或 x 的shape在广播后与 y 相同。
- 输出:
Tensor,与广播后的输入shape相同,和 x 数据类型相同。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> 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]