atanh, atanhf, atanhl - inverse hyperbolic tangent function
#include <math.h>
double atanh(double x);
float atanhf(float x);
long double atanhl(long double x);
Link with -lm
.
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
These functions calculate the inverse hyperbolic tangent of x
; that is the value whose hyperbolic tangent is x
.
On success, these functions return the inverse hyperbolic tangent of x
.
If x
is a NaN, a NaN is returned.
If x
is +0 (-0), +0 (-0) is returned.
If x
is +1 or -1, a pole error occurs, and the functions return HUGE_VAL, HUGE_VALF, or HUGE_VALL, respectively, with the mathematically correct sign.
If the absolute value of x
is greater than 1, a domain error occurs, and a NaN is returned.