mindspore.ops.coo_sinh

mindspore.ops.coo_sinh(x: COOTensor)[source]

Computes hyperbolic sine of the input element-wise.

\[out_i = \sinh(x_i)\]
Parameters

x (COOTensor) – The input COOTensor of hyperbolic sine function.

Returns

COOTensor, has the same shape as x.

Raises

TypeError – If x is not a COOTensor.

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