jax.lax.atanh#

jax.lax.atanh(x)[source]#

Elementwise inverse hyperbolic tangent: \(\mathrm{atanh}(x)\).

This function lowers directly to the chlo.atanh 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 tangent.

Return type:

Array

See also