The torch.sinh ()
function provides support for the hyperbolic sine function in PyTorch. Input in radians is expected. Input type — tensor, and if the input contains more than one element, the element-wise hyperbolic sine is calculated.
Syntax : torch.sinh (x, out = None)
Parameters :
x : Input tensor
name (optional): Output tensorReturn type : A tensor with the same type as that of x.
Code # 1:
|
Exit:
1.0000 -0.5000 3.4000 -2.1000 0.0000 -6.5000 [torch. FloatTensor of size 6] 1.1752 -0.5211 14.9654 -4.0219 0.0000 -332.5700 [torch.FloatTensor of size 6]
Code # 2: Rendering
|
Exit:
-74.2032 -36.3203 -17.7696 -8.6771 -4.2032 -1.9665 -0.7766 0.0000 0.7766 1.9665 4.2032 8.6771 17.7696 36.3203 74.2032 [torch.FloatTensor of size 15]