acosh(x)函数详解

首页 / C++入门教程 / acosh(x)函数详解

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

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

cosh-1x = acosh(x);

acosh - 语法

假设角度为" x":

链接:https://www.learnfk.comhttps://www.learnfk.com/c++/cpp-math-acosh-function.html

来源:LearnFk无涯教程网

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)<<'\n';  
    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)<<'\n';  
    cout<<"acosh(x) : "<<acosh(x);  
    return 0;  
}  

输出:

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

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

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

零基础学Python -〔尹会生〕

快速上手Kotlin开发 -〔张涛〕

邱岳的产品实战 -〔邱岳〕

微信小程序全栈开发实战 -〔李艺〕

技术管理案例课 -〔许健〕

讲好故事 -〔涵柏〕

搞定音频技术 -〔冯建元 〕

超级访谈:对话毕玄 -〔毕玄〕

运维监控系统实战笔记 -〔秦晓辉〕

好记忆不如烂笔头。留下您的足迹吧 :)