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

tanh函数


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

描述:

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

双曲正切函数的数学定义如下所示:

tanh( x ) = e x - e - x e x + e - x


参数:
double x

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


返回值:

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


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

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

int main(void)
{
    double x = 2.0;
    double y;

    y = tanh(x);
    printf("The hyperbolic tangent of %.6f is %.6f.\n", x, y);

    return 0;
}

输出:

The hyperbolic tangent of 2.000000 is 0.964028.


相关内容:
tanhf float类型的双曲正切函数。
tanhl long double类型的双曲正切函数。