atanh
, , atanhf
atanhl
역쌍곡 탄젠트를 계산합니다.
구문
double atanh( double x );
float atanhf( float x );
long double atanhl( long double x );
#define atanh(X) // Requires C11 or higher
float atanh( float x ); // C++ only
long double atanh( long double x ); // C++ only
매개 변수
x
부동 소수점 값입니다.
반환 값
함수는 atanh
의 역 하이퍼볼릭 탄젠트(아크 하이퍼볼릭 탄젠트) x
를 반환합니다. 1보다 크거나 -1 errno
보다 작은 경우 x
설정되고 EDOM
결과는 조용한 NaN입니다. x
가 1 또는 -1인 경우에는 양 또는 음의 무한대가 각각 반환되고 errno
는 ERANGE
로 설정됩니다.
입력 | SEH 예외 | _matherr 예외 |
---|---|---|
± QNaN, IND | 없음 | 없음 |
X ≥ 1; x ≤ -1 |
없음 | 없음 |
설명
C++에서는 오버로드를 허용하므로 atanh
또는 float
값을 사용 및 반환하는 long double
의 오버로드를 호출할 수 있습니다. C 프로그램에서는 tgmath.h 매크로를 <사용하여 이 함수를 호출하지 않는 한 항상 이 함수 atanh
를 가져와서 반환합니다double
.>
<tgmath.h>atanh()
매크로를 사용하는 경우 인수 형식에 따라 선택되는 함수 버전이 결정됩니다. 자세한 내용은 형식-제네릭 수학을 참조하세요.
기본적으로 이 함수의 전역 상태는 애플리케이션으로 범위가 지정됩니다. 이 동작을 변경하려면 CRT 전역 상태를 참조하세요.
요구 사항
함수 | C 헤더 | C++ 헤더 |
---|---|---|
atanh , , atanhf atanhl |
<math.h> | <cmath> 또는 <math.h> |
atanh 매크로 |
<tgmath.h> |
호환성에 대한 자세한 내용은 호환성을 참조하세요.
예시
// crt_atanh.c
// This program displays the hyperbolic tangent of pi / 4
// and the arc hyperbolic tangent of the result.
//
#include <math.h>
#include <stdio.h>
int main( void )
{
double pi = 3.1415926535;
double x, y;
x = tanh( pi / 4 );
y = atanh( x );
printf( "tanh( %f ) = %f\n", pi/4, x );
printf( "atanh( %f ) = %f\n", x, y );
}
tanh( 0.785398 ) = 0.655794
atanh( 0.655794 ) = 0.785398
참고 항목
수학 및 부동 소수점 지원
acosh
, , acoshf
acoshl
asinh
, , asinhf
asinhl
cosh
, , coshf
coshl
sinh
, , sinhf
sinhl
tanh
, , tanhf
tanhl