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