该函数计算以弧度给出的角度的双曲余弦值。
数学上
cosx = ex+ e-x/2
用法
假设双曲角为 'x':
float cosh(float x);
double cosh(double x);
long double cosh(long double x);
double cosh(integral x);
参数
x:要计算其双曲余弦的角度值。
返回值
它返回以弧度给出的角度的双曲余弦值。
例子1
当 x 的值是整数类型时,让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
int x=45;
float radian=x*3.14/180;
std::cout << "Value of degree is:" <<x<<std::endl;
cout<<"cosh(radian):"<<cosh(radian);
return 0;
}
输出:
Value of degree is:45 cosh(radian):1.32426
在此示例中,cosh() 计算角度 45 的双曲余弦值并返回值 1.324。
例子2
让我们看另一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x=25.5;
float radian=x*3.14/180;
std::cout << "Value of degree is:" << x<<std::endl;
cout<<"cosh(radian):"<<cosh(radian);
return 0;
}
输出:
Value of degree is:25.5 cosh(radian):1.10058
相关用法
- C++ Math cos()用法及代码示例
- C++ Math copysign()用法及代码示例
- C++ Math ceil()用法及代码示例
- C++ Math cbrt()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math sinh()用法及代码示例
- C++ Math scalbln()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math cosh()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。