与常规三角函数类似,双曲函数是使用双曲线而不是圆来定义的。在双曲几何中,双曲函数用于计算角度和距离。此外,它们还可以在大量线性微分方程、三次方程等的答案中找到。对于给定的角度$theta$。双曲正切函数 tanh$(theta)$ 如下 -
$$mathrm{tanh(x):=:frac{sinh(x)}{cosh(x)}:=:frac{e^{x}-e^{-x }}{e^{x}+e^{-x}}:=:frac{e^{2x}-1}{e^{2x}+1}}$$
在本文中,我们将讨论当角度以弧度单位给出时,在 C++ 中获取 tanh$(theta)$ 值的技术。
tanh() 函数
此 tanh$(theta)$ 需要 C++ cmath 库中的 tanh() 函数才能运行。该函数将弧度角度作为输入并输出双曲余弦值。下面使用简单的语法。
语法
#include
tanh( )
登录后复制
算法
- 将角度 x(以弧度表示)作为输入。
- 使用 tanh( x ) 计算 tanh (x)。
- 返回结果。
示例
#include
#include
using namespace std;
float solve( float x ) {
float answer;
answer = tanh( x );
return answer;
}
int main()
{
cout