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