mindspore.ops.atan

View Source On Gitee
mindspore.ops.atan(input)[source]

Computes the trigonometric inverse tangent of the input element-wise.

outi=tan1(inputi)
Parameters

input (Tensor) – The input tensor.

Returns

Tensor

Supported Platforms:

Ascend GPU CPU

Examples

>>> import mindspore
>>> output = mindspore.ops.atan(mindspore.tensor([1.0, 0.0]))
>>> print(output)
[0.7853982 0.       ]