mindspore.ops.Atan
- class mindspore.ops.Atan[源代码]
逐元素计算输入Tensor的反正切值。
更多细节请参考
mindspore.ops.atan()
。- 输入:
x (Tensor): 输入Tensor,shape: \((N,*)\) ,其中 \(*\) 表示任何数量的附加维度。其轶应小于8。数据类型可为以下类型:float16或float32。
- 输出:
Tensor,shape和dtype与输入 x 相同。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> x = Tensor(np.array([1.0, 0.0]), mindspore.float32) >>> atan = ops.Atan() >>> output = atan(x) >>> print(output) [0.7853982 0. ]