function
<cmath> <ctgmath>
atanhdouble atanh (double x); float atanhf (float x);long double atanhl (long double x);
double atanh (double x); float atanh (float x);long double atanh (long double x); double asinh (T x); // additional overloads for integral types
Compute area hyperbolic tangent
Returns the area hyperbolic tangent of x.The area hyperbolic tangent is the inverse operation of the hyperbolic tangent.
Header
<tgmath.h>provides a type-generic macro version of this function.
[-1,+1]
.
-1
and +1
, a pole error may occur.
If a domain error occurs:
If a pole error occurs:
1
2
3
4
5
6
7
8
9
10
11
12
/* atanh example */
#include <stdio.h> /* printf */
#include <math.h> /* tanh, atanh */
int main ()
{
double param, result;
param = tanh(1);
result = atanh(param) ;
printf ("The area hyperbolic tangent of %f is %f.\n", param, result);
return 0;
}
The area hyperbolic tangent of 0.761594 is 1.000000.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4