📜  C++ cosh()

📅  最后修改于: 2020-09-25 07:31:57             🧑  作者: Mango

C++中的cosh() 函数返回以弧度表示的角度的双曲余弦值。

该函数在头文件中定义。

[Mathematics] cosh x = cosh(x) [In C++ Programming]

cosh()原型[从C++ 11标准开始]

double cosh(double x);
float cosh(float x);
long double cosh(long double x);
double cosh(T x); // For integral type.

cosh() 函数以弧度为单位接受单个参数,然后以doublefloatlong double类型返回该角度的双曲余弦值。

x的双曲余弦由下式给出:

C++ cosh() function

cosh()参数

cosh() 函数采用一个强制性参数,以弧度表示双曲线角。

cosh()返回值

cosh() 函数返回参数的双曲余弦值。

如果结果的大小太大而无法用返回类型的值表示,则该函数将返回带有正确符号的HUGE_VAL ,并且会发生溢出范围错误。

示例1:cosh() 函数如何工作?

#include 
#include 
using namespace std;
int main()
{
    double x = 4.55, result;

    result = cosh(x);
    cout << "cosh(x) = " << result << endl;

    // x in Degrees
    double xDegrees = 90;
    x = xDegrees * 3.14159/180;

    result = cosh(x);
    cout << "cosh(x) = " << result << endl;

    return 0;
}

运行该程序时,输出为:

cosh(x) = 47.3215
cosh(x) = 2.50918

示例2:带有整数类型的cosh() 函数

#include 
#include 
using namespace std;
int main()
{
    int x = -3;
    double result;

    result = cosh(x);
    cout << "cosh(x) = " << result << endl;

    return 0;
}

运行该程序时,输出为:

cosh(x) = 10.0179