mindspore.ops.csr_asinh

mindspore.ops.csr_asinh(x: CSRTensor)[源代码]

计算CSRTensor输入元素的反双曲正弦。

\[out_i = \sinh^{-1}(input_i)\]
参数:
  • x (CSRTensor) - 需要计算反双曲正弦函数的输入,其秩的范围必须在[0, 7]。

返回:

CSRTensor,数据类型和shape与 x 相同。

异常:
  • TypeError - 如果 x 不是CSRTensor。

支持平台:

Ascend GPU CPU

样例:

>>> indptr = Tensor([0, 1, 2, 2], dtype=mstype.int32)
>>> indices = Tensor([3, 0], dtype=mstype.int32)
>>> values = Tensor([-1, 2], dtype=mstype.float32)
>>> shape = (3, 4)
>>> x = CSRTensor(indptr, indices, values, shape)
>>> output = ops.csr_asinh(x)
>>> print(output.values)
[-0.8813736  1.4436355]