mindspore.Tensor.asin

查看源文件
mindspore.Tensor.asin()

逐元素计算 self 的反正弦。

\[out_i = \sin^{-1}(self_i)\]
返回:

Tensor,shape与 self 相同。当 self 数据类型为bool、int8、uint8、int16、int32、int64时,返回值数据类型为float32。否则,返回值数据类型与 self 数据类型相同。

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

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore
>>> import numpy as np
>>> from mindspore import Tensor
>>> x = Tensor(np.array([0.74, 0.04, 0.30, 0.56]), mindspore.float32)
>>> output = Tensor.asin(x)   # x.asin()
>>> print(output)
[0.8330927  0.04001068  0.30469266  0.59438497 ]