mindspore.ops.coo_asinh
- mindspore.ops.coo_asinh(x: COOTensor)[源代码]
计算COOTensor输入元素的反双曲正弦。
\[out_i = \sinh^{-1}(input_i)\]- 参数:
x (COOTensor) - 需要计算反双曲正弦函数的输入。
- 返回:
COOTensor,数据类型和shape与 x 相同。
- 异常:
TypeError - 如果 x 不是COOTensor。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> from mindspore import dtype as mstype >>> from mindspore import Tensor, ops, COOTensor >>> 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_asinh(x) >>> print(output.values) [-0.8813736 1.4436355]