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