C++ 中的cosh() 函数返回以弧度给出的角度的双曲余弦值。
该函数在<cmath> 头文件中定义。
[Mathematics] cosh x = cosh(x) [In C++ Programming]
cosh() 原型 [从 C++ 11 标准开始]
double cosh(double x); float cosh(float x); long double cosh(long double x); double cosh(T x); // For integral type.
cosh() 函数接受一个以弧度表示的参数,并以 double
, float
或 long double
类型返回该角度的双曲余弦值。
x 的双曲余弦由下式给出,
参数:
cosh() 函数采用一个强制参数,以弧度表示双曲角。
返回:
cosh() 函数返回参数的双曲余弦值。
如果结果的幅度太大而无法用返回类型的值表示,则函数返回带有正确符号的HUGE_VAL
,并发生溢出范围错误。
示例 1:cosh() 函数如何工作?
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x = 4.55, result;
result = cosh(x);
cout << "cosh(x) = " << result << endl;
// x in Degrees
double xDegrees = 90;
x = xDegrees * 3.14159/180;
result = cosh(x);
cout << "cosh(x) = " << result << endl;
return 0;
}
运行程序时,输出将是:
cosh(x) = 47.3215 cosh(x) = 2.50918
示例 2:cosh() 具有整数类型的函数
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int x = -3;
double result;
result = cosh(x);
cout << "cosh(x) = " << result << endl;
return 0;
}
运行程序时,输出将是:
cosh(x) = 10.0179
相关用法
- C++ complex cosh()用法及代码示例
- C++ cosh()用法及代码示例
- C++ cos()用法及代码示例
- C++ complex cos()用法及代码示例
- C++ count()用法及代码示例
- C++ copy_n()用法及代码示例
- C++ copy()用法及代码示例
- C++ count_if()用法及代码示例
- C++ copy_backward()用法及代码示例
- C++ cout用法及代码示例
- C++ copysign()用法及代码示例
- C++ copy_if()用法及代码示例
- C++ conj()用法及代码示例
- C++ clock()用法及代码示例
- C++ clog用法及代码示例
- C++ cbrt()用法及代码示例
- C++ c32rtomb()用法及代码示例
- C++ c16rtomb()用法及代码示例
- C++ cin用法及代码示例
- C++ ctime()用法及代码示例
注:本文由纯净天空筛选整理自 C++ cosh()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。