fn
acosh
→Tensoracosh(x: Tensor)Inverse hyperbolic cosine.
Short-name alias of arccosh. Computes the principal branch of
for real inputs.
Parameters
xTensorInput tensor with values in the domain .
Returns
TensorElement-wise inverse hyperbolic cosine.
Notes
Mathematical definition:
Inputs with produce NaN. The derivative is , which is singular at .
Examples
>>> import lucid
>>> x = lucid.tensor([1.0, 2.0, 10.0])
>>> lucid.acosh(x)
Tensor([0. , 1.3170, 2.9932])