当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Math acosh()用法及代码示例


该函数计算以弧度给出的角度的弧双曲余弦。

其中,弧双曲余弦是双曲余弦的逆运算。

高价-1x = acosh(x);

用法

假设角度为 'x':

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

参数

x: 要计算其反双曲余弦的值。

返回值

它返回 x 的反双曲余弦值。

例子1

让我们看一个简单的例子,当 degree 的值是整数类型时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    int degree =30;
    float x = degree*3.14/180;
    std::cout << "Value of degree is:" <<degree<< std::endl;
    cout<<"cosh(x):"<<cosh(x)<<'\n';
    cout<<"acosh(x):"<<acosh(x);
    return 0;
}

输出:

Value of degree is:30
cosh(x):1.14009
acosh(x):-nan   

在本例中,acosh() 函数计算 x 的反双曲余弦并返回值 -nan。

例子2

让我们看一个简单的例子,当 degree 的值是 float 类型时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    int degree =15.7;
    float x = degree*3.14/180;
    std::cout << "Value of degree is:" <<degree<< std::endl;
    cout<<"cosh(x):"<<cosh(x)<<'\n';
    cout<<"acosh(x):"<<acosh(x);
    return 0;
}

输出:

Value of degree is:15.7
cosh(x):1.03443
acosh(x):-nan   

在此示例中,acosh() 计算 x 的反双曲余弦并返回值 -nan。






相关用法


注:本文由纯净天空筛选整理自 C++ Math acosh()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。