mindspore.ops.Sinh

class mindspore.ops.Sinh(*args, **kwargs)[source]

Computes hyperbolic sine of the input element-wise.

Inputs:
  • input_x (Tensor) - The shape of tensor is \((x_1, x_2, ..., x_R)\).

Outputs:

Tensor, has the same shape as input_x.

Raises

TypeError – If input_x is not a Tensor.

Supported Platforms:

Ascend CPU

Examples

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