mindspore.ops.Asin

class mindspore.ops.Asin[source]

Computes arcsine of input tensor element-wise.

Refer to mindspore.ops.asin() for more details.

Note

Complex64 and complex128 are not supported on Ascend currently.

Inputs:
  • x (Tensor) - The input Tensor.

Outputs:

Tensor, has the same shape and dtype as x.

Supported Platforms:

Ascend GPU CPU

Examples

>>> import mindspore
>>> import numpy as np
>>> from mindspore import Tensor, ops
>>> asin = ops.Asin()
>>> x = Tensor(np.array([0.74, 0.04, 0.30, 0.56]), mindspore.float32)
>>> output = asin(x)
>>> print(output)
[0.8330704  0.04001067 0.30469266 0.5943858 ]
>>> x = Tensor(0.12)
>>> output = asin(x)
>>> print(output)
0.12028988