mindspore.ops.Atan

class mindspore.ops.Atan[源代码]

逐元素计算输入Tensor的反正切值。

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

输入:
  • x (Tensor): 输入Tensor,支持数据类型:

    • Ascend: float16、float32。

    • GPU/CPU: float16、float32、float64、complex64、complex128。

输出:

Tensor,shape和dtype与输入 x 相同。

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore
>>> import numpy as np
>>> from mindspore import Tensor, ops
>>> x = Tensor(np.array([1.0, 0.0]), mindspore.float32)
>>> atan = ops.Atan()
>>> output = atan(x)
>>> print(output)
[0.7853982 0.       ]