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