mindspore.ops.Sinh

class mindspore.ops.Sinh[source]

Computes hyperbolic sine of the input element-wise.

Refer to mindspore.ops.sinh() for more details.

Supported Platforms:

Ascend GPU CPU

Examples

>>> sinh = ops.Sinh()
>>> x = Tensor(np.array([0.62, 0.28, 0.43, 0.62]), mindspore.float32)
>>> output = sinh(x)
>>> print(output)
[0.6604918  0.28367308 0.44337422 0.6604918 ]