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

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

C++ STL math.acosh()

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

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

句法

假设角度为“ x”:

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

参数

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

返回值

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

例子1

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

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

输出:

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

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

例子2

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

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

输出:

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

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