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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。