asinh, asinhf, asinhl
헤더 파일
[언어 자료구조 알고리즘/C11 표준 라이브러리 함수] - math.h
double asinh(double x); 쌍곡선 arc sine 함수
float asinhf(float x); 쌍곡선 arc sine 함수
long double asinhl(long double x); 쌍곡선 arc sine 함수
입력 매개 변수 리스트
x 실수
반환 값
쌍곡선 arc sine
쌍곡선 함수는 삼각함수 sine, cosine, tangent에서 유추하여 만든 함수입니다.
arcsinh(x) = ln(x+root(x^2 + 1)
사용 예
//C언어 표준 라이브러리 함수 가이드
//double asinh(double x); 쌍곡선 arc sine 함수
//float asinhf(float x); 쌍곡선 arc sine 함수
//long double asinhl(long double x); 쌍곡선 arc sine 함수
//-5.0에서 5.0까지 쌍곡선 arc sine 값
#include <math.h>
#include <stdio.h>
int main(void)
{
double x;
for (x = -5.0; x <= 5.0; x += 1.0)
{
printf("asinh(%f)=%f\n", x, asinh(x));
}
return 0;
}
출력
asinh(-5.000000)=-2.312438
asinh(-4.000000)=-2.094713
asinh(-3.000000)=-1.818446
asinh(-2.000000)=-1.443635
asinh(-1.000000)=-0.881374
asinh(0.000000)=0.000000
asinh(1.000000)=0.881374
asinh(2.000000)=1.443635
asinh(3.000000)=1.818446
asinh(4.000000)=2.094713
asinh(5.000000)=2.312438
사용한 함수
'언어 자료구조 알고리즘 > C11 표준 라이브러리 함수' 카테고리의 다른 글
exp2, exp2f, exp2l (0) | 2016.05.10 |
---|---|
tanh, tanhf, tanhl (0) | 2016.05.10 |
sinh, sinhf, sinhl (0) | 2016.05.10 |
cosh, coshf, coshl (0) | 2016.05.10 |
atanh, atanhf, atanhl (0) | 2016.05.10 |
[출간] C언어 표준 라이브러리 함수 가이드 (0) | 2016.01.03 |
ACOSH, ACOSHF, ACOSHL (0) | 2016.01.03 |
FLOOR, FLOORF, FLOORL (0) | 2016.01.03 |
FMOD, FMODF, FMODL (0) | 2016.01.03 |
CEIL, CEILF, CEILL (0) | 2016.01.03 |