mindspore.ops.coo_asin
- mindspore.ops.coo_asin(x: COOTensor)[source]
Computes arcsine of input coo_tensors element-wise.
\[out_i = sin^{-1}(x_i)\]- Parameters
x (COOTensor) – Input COOTensor.
- Returns
COOTensor, has the same shape and dtype as x.
- Raises
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> indices = Tensor([[0, 1], [1, 2]], dtype=mstype.int64) >>> values = Tensor([-1, 2], dtype=mstype.float32) >>> shape = (3, 4) >>> x = COOTensor(indices, values, shape) >>> output = ops.coo_asin(x) >>> print(output.values) [-1.5707964 nan]