acosh, acoshf - inverse hyperbolic cosine functions
#include <math.h>
double
acosh(double x);
float
acoshf(float x);
The acosh() function computes the inverse hyperbolic cosine
of the real
argument x. The acoshf() function is a single precision
version of
acosh().
If x is less than one, acosh(x) and acoshf(x) return NaN and
set the
global variable errno to EDOM.
asinh(3), atanh(3), exp(3), infnan(3), math(3)
The acosh() function appeared in 4.3BSD.
OpenBSD 3.6 May 6, 1991
[ Back ] |