该tanh()
函数返回以弧度给出的角度的双曲正切值。它是C ++ STL中的内置函数。
该tanh()
函数的语法如下。
tanh(var)
从语法可以看出,该函数tanh()
接受数据类型为float,double或long double的参数var。它返回var的双曲正切值。
tanh()
给出了用C ++演示的程序,如下所示。
#include <iostream> #include <cmath> using namespace std; int main() { double d = 5, ans; ans = tanh(d); cout << "tanh("<< d <<") = " << ans << endl; return 0; }
tanh(5) = 0.999909
在上面的程序中,首先将变量d初始化。然后使用找出d的双曲正切tanh()
并将其存储在ans中。最后,显示ans的值。下面的代码片段对此进行了演示。
double d = 5, ans; ans = tanh(d); cout << "tanh("<< d <<") = " << ans << endl;
如果以度为单位提供值,则在使用tanh()
函数之前将其转换为弧度,因为它会返回以弧度给出的角度的双曲线正切值。一个程序来演示这一点-
#include <iostream> #include <cmath> using namespace std; int main() { double degree = 60, ans; degree = degree * 3.14159/180; ans = tanh(degree); cout << "tanh("<<degree<<") = " << ans <<endl; return 0; }
输出结果
tanh(1.0472) = 0.780714
在上述程序中,该值以度为单位。因此将其转换为弧度,然后使用来获得双曲正切tanh()
。最后,显示输出。下面的代码片段对此进行了演示。
double degree = 60, ans; degree = degree * 3.14159/180; ans = tanh(degree); cout << "tanh("<<degree<<") = " << ans <<endl;