jax.numpy.arcsinh

Contents

jax.numpy.arcsinh#

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

Inverse hyperbolic sine element-wise.

LAX-backend implementation of numpy.arcsinh().

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