该函数计算以弧度表示的角度的双曲余弦值。
其中,反双曲余弦是双曲余弦的逆运算。
cosh-1x = acosh(x);
acosh - 语法
假设角度为" x":
float acosh(float x); double acosh(double x); long double acosh(long double x); double acosh(integral x);
acosh - 参数
x :要计算其双曲余弦值的值。
acosh - 返回值
它返回x的反双曲余弦值。
acosh - 例子1
让我们看一个简单的例子,当度的值为整数类型时。
#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)<<
;
cout<<"acosh(x) : "<<acosh(x);
return 0;
}
输出:
Value of degree is : 30 cosh(x) : 1.14009 acosh(x) : -nan
在此示例中,acosh()函数计算x的反双曲余弦值并返回-nan值。
acosh - 例子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)<<
;
cout<<"acosh(x) : "<<acosh(x);
return 0;
}
输出:
Value of degree is : 15.7 cosh(x) : 1.03443 acosh(x) : -nan
在此示例中,acosh()计算x的反双曲余弦值并返回-nan值。