📜  C++ STL-math.tanh()函数

📅  最后修改于: 2020-10-18 11:41:29             🧑  作者: Mango

C++ STL math.tanh()

该函数计算以弧度表示的角度的双曲正切值。

数学上

句法

假设角度为“ x”:

float tanh(float x);
double tanh(double x);
long double tanh(long double x);
double tanh(integral x);

参数

x:要计算其双曲正切的值。

返回值

它返回x的双曲正切。

例子1

让我们看一下x的值为整数类型的简单示例。

#include 
#include
using namespace std;
 int main()
{
    int degree =60;
    float x = degree*3.14/180;
    std::cout << "Value of degree is : " <

输出:

Value of degree is : 60
tanh(x) : 0.780507   

在此示例中,tanh(x)函数计算x的双曲正切值并返回值0.78。

例子2

让我们看一下x的值为浮点型的简单示例。

#include 
#include
using namespace std;
int main()
{
    float degree = 45.2;
    float x = degree*3.14/180;
    std::cout << "Value of degree is : " <

输出:

Value of degree is : 45.2
tanh(x) : 0.657552   

在此示例中,tanh(x)函数计算x的双曲正切值并返回值0.65。