mindspore.ops.asin
- mindspore.ops.asin(x)[source]
Computes arcsine of input tensors element-wise.
\[out_i = sin^{-1}(x_i)\]- Parameters
x (Tensor) – The shape of tensor is \((N,*)\) where \(*\) means, any number of additional dimensions. The data type should be one of the following types: float16, float32, float64.
- Returns
Tensor, has the same shape and dtype as x.
- Raises
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> 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 ]