jax.lax.acosh#
- jax.lax.acosh(x)[source]#
Elementwise inverse hyperbolic cosine: \(\mathrm{acosh}(x)\).
This function lowers directly to the
chlo.acosh
operation.- Parameters:
x (ArrayLike) – input array. Must have floating-point or complex type.
- Returns:
Array of the same shape and dtype as
x
containing the element-wise inverse hyperbolic cosine.- Return type:
See also
jax.lax.asinh()
: elementwise inverse hyperbolic sine.jax.lax.atanh()
: elementwise inverse hyperbolic tangent.jax.lax.cosh()
: elementwise hyperbolic cosine.