torch.asinh

torch.asinh(input, *, out=None) → Tensor

Returns a new tensor with the inverse hyperbolic sine of the elements of input.

outi=sinh1(inputi)\text{out}_{i} = \sinh^{-1}(\text{input}_{i})
Parameters

input (Tensor) – the input tensor.

Keyword Arguments

out (Tensor, optional) – the output tensor.

Example:

>>> a = torch.randn(4)
>>> a
tensor([ 0.1606, -1.4267, -1.0899, -1.0250 ])
>>> torch.asinh(a)
tensor([ 0.1599, -1.1534, -0.9435, -0.8990 ])

© 2019 Torch Contributors
Licensed under the 3-clause BSD License.
https://pytorch.org/docs/1.8.0/generated/torch.asinh.html