mindspore.Tensor.atan2
- mindspore.Tensor.atan2(other)
逐元素计算self/other的反正切值。
返回 \(\theta\ \in\ [-\pi, \pi]\) ,使得 \(self = r*\sin(\theta), other = r*\cos(\theta)\) ,其中 \(r = \sqrt{self^2 + other^2}\) 。
说明
self 和参数 other 遵循隐式类型转换规则,使数据类型保持一致。如果两参数数据类型不一致,则低精度类型会被转换成较高精度类型。
- 参数:
other (Tensor, Number.number) - 输入Tensor或常数,shape与 self 相同,或能与 self 的shape广播。
- 返回:
Tensor,与广播后的输入shape相同,和 self 数据类型相同。
- 异常:
TypeError - other 不是Tensor或常数。
RuntimeError - self 与 other 之间的数据类型转换不被支持。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> import mindspore >>> import numpy as np >>> from mindspore import Tensor >>> input = Tensor(np.array([0, 1]), mindspore.float32) >>> other = Tensor(np.array([1, 1]), mindspore.float32) >>> output = Tensor.atan2(input, other) # input.atan2(other) >>> print(output) [0. 0.7853982]