mindspore.mint.sinh
- mindspore.mint.sinh(input)[source]
Compute hyperbolic sine of the input element-wise.
- Parameters
input (Tensor) – The input tensor.
- Returns
Tensor
- Supported Platforms:
Ascend
Examples
>>> import mindspore >>> input = mindspore.tensor([0.62, 0.28, 0.43, 0.62], mindspore.float32) >>> output = mindspore.mint.sinh(input) >>> print(output) [0.6604918 0.28367308 0.44337422 0.6604918 ]