jax.numpy.acosh

Contents

jax.numpy.acosh#

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

Inverse hyperbolic cosine, element-wise.

LAX-backend implementation of numpy.arccosh().

Original docstring below.

Parameters:

x (array_like) – Input array.

Returns:

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

Return type:

ndarray

References