当前位置: C语言 -- 标准库 -- <math.h> -- atanh

atanh函数


概要:
#include <math.h>
double atanh(double x);

描述:

该函数计算参数x的反双曲正切值。

如果参数x不在区间[-1,+1]内,将发生域错误。如果参数x等于-1或者+1,将可能发生极点错误。


参数:
double x

参数为一个double类型的浮点数。


返回值:

函数返回参数x的反双曲正切值。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
/*函数atanh范例*/

#include <math.h>
#include <stdio.h>

int main(void)
{
    double value = 0.5;
    double area;

    area = atanh(value);
    printf("The arc hyperbolic tangent of %.6f is %.6f.\n", value, area);

    return 0;
}

输出:

The arc hyperbolic tangent of 0.500000 is 0.549306.


相关内容:
atanhf float类型的反双曲正切函数。
atanhl long double类型的反双曲正切函数。