Go to the first, previous, next, last section, table of contents.
#include <math.h> double atanh(double x);
This function computes the inverse hyperbolic tangent of x.
The inverse hyperbolic tangent of x. If the the value of
x is plus or minus 1, the return value is an Inf
with the
same sign as the argument x, and errno
is set to
ERANGE
. If the absolute value of x is greater 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.