mindspore.ops.asin

mindspore.ops.asin(x)[源代码]

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

\[out_i = sin^{-1}(x_i)\]
参数:
  • x (Tensor) - Tensor的shape为 \((N,*)\) ,其中 \(*\) 表示任意数量的附加维度。

返回:

Tensor,数据类型和shape与 x 相同。

异常:
  • TypeError - 如果 x 不是Tensor。

  • TypeError - 如果 x 的数据类型不是float16、float32、float64、complex64或complex128。

支持平台:

Ascend GPU CPU

样例:

>>> x = Tensor(np.array([0.74, 0.04, 0.30, 0.56]), mindspore.float32)
>>> output = ops.asin(x)
>>> print(output)
[0.8330704  0.04001067 0.30469266 0.5943858 ]