atanh()函數(shù)返回弧度數(shù)的反雙曲正切(反雙曲正切值)。
atanh()函數(shù)采用單個(gè)參數(shù)(-1≤x≥1),并以弧度返回圓弧反雙曲正切值。
atanh()函數(shù)包含在<math.h>頭文件中。
double atanh(double x);
要查找類型為int,float或long double的弧雙曲正切,可以使用cast運(yùn)算符將類型顯式轉(zhuǎn)換為double。
int x = 0; double result; result = atanh(double(x));
另外,C99中引入了兩個(gè)函數(shù)atanhf()和atanhl(),分別專門用于float類型和long double類型。
float atanhf(float x); long double atanhl(long double x);
atanh()函數(shù)采用一個(gè)大于或等于-1且小于或等于1的參數(shù)。
參數(shù) | 描述 |
---|---|
double 值 | 需要。 大于或等于1的雙精度值 (-1 ≤ x ≥ 1). |
#include <stdio.h> #include <math.h> int main() { //PI 常量 const double PI = 3.1415926; double x, result; x = -0.5; result = atanh(x); printf("atanh(%.2f) = %.2lf 弧度\n", x, result); //將弧度轉(zhuǎn)換成角度 result = atanh(x)*180/PI; printf("atanh(%.2f) = %.2lf 度\n", x, result); //參數(shù)不在范圍內(nèi) x = 3; result = atanh(x); printf("atanh(%.2f) = %.2lf", x, result); return 0; }
輸出結(jié)果
atanh(-0.50) = -0.55 弧度 atanh(-0.50) = -31.47 度 atanh(3.00) = nan