📜  C++ sinh()

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

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

该函数在头文件中定义。

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

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

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

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

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

C++ sinh() function

sinh()参数

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

sinh()返回值

sinh() 函数返回参数的双曲正弦值。

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

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

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

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

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

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

    return 0;
}

运行该程序时,输出为:

sinh(x) = 17.3923
sinh(x) = 2.3013

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

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

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

    return 0;
}

运行该程序时,输出为:

sinh(x) = -10.0179