跳转到内容

C++ 编程/代码/标准 C 库/函数/tanh

来自维基教科书,开放的书籍,开放的世界
语法
#include <cmath>
double tanh( double arg );


/*example*/
#include <stdio.h>
#include <math.h>
int main (){
	double c, p;
	c = log(2.0);
	p = tanh (c);
	printf ("The hyperbolic tangent of %lf is %lf.\n", c, p );
return 0;
}

函数 tanh() 返回arg的双曲正切值。

相关主题
acos - asin - atan - atan2 - cos - cosh - sin - sinh - tan
华夏公益教科书