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