jax.numpy.arccosh

Contents

jax.numpy.arccosh#

jax.numpy.arccosh(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