C庫函數(shù) double tanh(double x)返回x的雙曲正切。
以下是 tanh() 函數(shù)的聲明。
double tanh(double x)
x -- 這是浮點值。
這個函數(shù)返回x的雙曲正切。
下面的例子演示了如何使用 tanh()函數(shù)。
#include <stdio.h> #include <math.h> int main () { double x, ret; x = 0.5; ret = tanh(x); printf("The hyperbolic tangent of %lf is %lf degrees", x, ret); return(0); }
讓我們編譯和運行上面的程序,這將產(chǎn)生以下結(jié)果:
The hyperbolic tangent of 0.500000 is 0.462117 degrees