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.

  • out (ndarray, None, or tuple of ndarray and None, optional) – A location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly-allocated array is returned. A tuple (possible only as a keyword argument) must have length equal to the number of outputs.

Returns

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

Return type

ndarray

References

1

M. Abramowitz and I.A. Stegun, “Handbook of Mathematical Functions”, 10th printing, 1964, pp. 86. https://personal.math.ubc.ca/~cbm/aands/page_86.htm

2

Wikipedia, “Inverse hyperbolic function”, https://en.wikipedia.org/wiki/Arccosh