C++ 中的acosh() 函數以弧度返回數字的反雙曲餘弦(反雙曲餘弦)。
acosh() 函數采用單個參數並以弧度返回該值的反雙曲餘弦值。
該函數在<cmath> 頭文件中定義。
[Mathematics] cosh-1x = acosh(x) [In C++ Programming]
acosh() 原型 [從 C++ 11 標準開始]
double acosh(double x); float acosh(float x); long double acosh(long double x); double acosh(T x); // For integral type
參數:
acosh() 函數采用一個大於或等於 1 的強製參數。
如果參數小於 1,則會發生域錯誤。
返回:
acosh() 函數返回 [0, ∞] 範圍內的值。
如果傳遞給 acosh() 的參數小於 1,則返回 NaN
(不是數字)。
範圍 | 返回值 |
---|---|
x >= 1 | [0, ∞] |
x < 1 | NaN |
示例 1:acosh() 函數在 C++ 中如何工作?
#include <iostream>
#include <cmath>
#define PI 3.141592654
using namespace std;
int main()
{
double x = 13.21, result;
result = acosh(x);
cout << "acosh(x) = " << result << " radian" << endl;
// result in degrees
cout << "acosh(x) = " << result*180/PI << " degree" << endl;
return 0;
}
運行程序時,輸出將是:
acosh(x) = 3.27269 radian acosh(x) = 187.511 degree
示例 2:acosh() 具有整數類型的函數
#include <iostream>
#include <cmath>
#define PI 3.141592654
using namespace std;
int main()
{
int x = 4;
double result;
result = acosh(x);
cout << "acosh(x) = " << result << " radian" << endl;
// result in degrees
cout << "acosh(x) = " << result*180/PI << " degree" << endl;
return 0;
}
運行程序時,輸出將是:
acosh(x) = 2.06344 radian acosh(x) = 118.226 degree
相關用法
- C++ complex acosh()用法及代碼示例
- C++ acosh()用法及代碼示例
- C++ acos()用法及代碼示例
- C++ complex acos()用法及代碼示例
- C++ atexit()用法及代碼示例
- C++ any_of()用法及代碼示例
- C++ atof()用法及代碼示例
- C++ abort()用法及代碼示例
- C++ atol()用法及代碼示例
- C++ array at()用法及代碼示例
- C++ array::fill()、array::swap()用法及代碼示例
- C++ atoll()用法及代碼示例
- C++ array::size()用法及代碼示例
- C++ array::rbegin()、array::rend()用法及代碼示例
- C++ atan()用法及代碼示例
- C++ complex abs()用法及代碼示例
- C++ array::front()、array::back()用法及代碼示例
- C++ array::front()用法及代碼示例
- C++ array get()用法及代碼示例
- C++ complex atanh()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ acosh()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。