jax.numpy.arctanh

Contents

jax.numpy.arctanh#

jax.numpy.arctanh(x, /)[source]#

Inverse hyperbolic tangent element-wise.

LAX-backend implementation of numpy.arctanh().

Original docstring below.

Parameters:

x (array_like) – Input array.

Returns:

out – Array of the same shape as x. This is a scalar if x is a scalar.

Return type:

ndarray or scalar

References