jax.lax.cosh#
- jax.lax.cosh(x)[source]#
Elementwise hyperbolic cosine: \(\mathrm{cosh}(x)\).
This function lowers directly to the
chlo.cosh
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 hyperbolic cosine.- Return type:
See also
jax.lax.acosh()
: elementwise inverse hyperbolic cosine.jax.lax.sinh()
: elementwise hyperbolic sine.jax.lax.tanh()
: elementwise hyperbolic tangent.