mindspore.ops.coo_sinh

mindspore.ops.coo_sinh(x: COOTensor)[源代码]

逐元素计算输入COOTensor的双曲正弦。

\[out_i = \sinh(x_i)\]
参数:
  • x (COOTensor) - coo_sinh的输入COOTensor,其秩范围必须在[0, 7]。

返回:

COOTensor,shape与 x 相同。

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

支持平台:

Ascend GPU CPU

样例:

>>> 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_sinh(x)
>>> print(output.values)
[-1.1752012  3.6268604]