mindspore.ops.Atan
- class mindspore.ops.Atan[源代码]
逐元素计算输入Tensor的反正切值。
更多细节请参考
mindspore.ops.atan()
。- 支持平台:
Ascend
GPU
CPU
样例:
>>> x = Tensor(np.array([1.0, 0.0]), mindspore.float32) >>> atan = ops.Atan() >>> output = atan(x) >>> print(output) [0.7853982 0. ]