mindspore.ops.Asin
- class mindspore.ops.Asin[source]
Computes arcsine of input tensors element-wise.
- Inputs:
x (Tensor) - The shape of tensor is
where means, any number of additional dimensions. The data type should be one of the following types: float16, float32.
- Outputs:
Tensor, has the same shape as x.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> asin = ops.Asin() >>> x = Tensor(np.array([0.74, 0.04, 0.30, 0.56]), mindspore.float32) >>> output = asin(x) >>> print(output) [0.8330927 0.04001068 0.30469266 0.59438497]