mindspore.ops.Sinh

class mindspore.ops.Sinh[source]

Computes hyperbolic sine of the input element-wise.

\[out_i = \sinh(input_i)\]
Inputs:
  • x (Tensor) - The shape of tensor is \((N,*)\) where \(*\) means, any number of additional dimensions, its rank should less than 8.

Outputs:

Tensor, has the same shape as x.

Raises

TypeError – If x is not a Tensor.

Supported Platforms:

Ascend 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 ]