fn
arcsinh
→Tensorarcsinh(x: Tensor)Inverse hyperbolic sine.
Verbose alias of asinh. Computes
,
defined for all real x.
Parameters
xTensorInput tensor; domain is all of .
Returns
TensorElement-wise inverse hyperbolic sine, same shape as x.
Notes
Mathematical definition:
Odd function: .
Derivative is . Both arcsinh and
asinh refer to the same composite.
Examples
>>> import lucid
>>> x = lucid.tensor([-1.0, 0.0, 1.0])
>>> lucid.arcsinh(x)
Tensor([-0.8814, 0. , 0.8814])