📅  最后修改于: 2023-12-03 14:39:52.220000             🧑  作者: Mango
在C++ STL(Standard Template Library)中,tanh()函数是数学库中的一个函数,它以双精度浮点数作参数,并返回该参数的双曲正切值。
double tanh (double x);
参数x为双精度浮点数,表示要计算的对象。
该函数返回参数的双曲正切值,类型为double。
#include <iostream>
#include <cmath>
using namespace std;
int main () {
double x = 2.0;
cout << "tanh(" << x << ") = " << tanh(x) << endl;
return 0;
}
输出:
tanh(2) = 0.964028