Go to the first, previous, next, last section, table of contents.
#include <math.h> double acosh(double x);
This function returns the inverse hyperbolic cosine of x.
The inverse hyperbolic cosine of x. If the value of x is
less than 1, the return value is NaN
and errno
is set to
EDOM
.
not ANSI, not POSIX
Go to the first, previous, next, last section, table of contents.