tanh函数
概要:
#include <math.h> double tanh(double x);
描述:
该函数计算参数x的双曲正切值。
双曲正切函数的数学定义如下所示:
参数:
double x
参数为一个double类型的浮点数。
返回值:
函数返回参数x的双曲正切值。
范例:
|
|
输出:
The hyperbolic tangent of 2.000000 is 0.964028.
相关内容:
tanhf | float类型的双曲正切函数。 |
tanhl | long double类型的双曲正切函数。 |