double cosh(double x); 쌍곡선 cosine 함수
float coshf(float x); 쌍곡선 cosine 함수
long double coshl(long double x); 쌍곡선 cosine 함수
입력 매개 변수 리스트
x 실수
반환 값
쌍곡선 cosine
쌍곡선 함수는 삼각함수 sine, cosine, tangent에서 유추하여 만든 함수입니다.
cosh(x) = (e^x + e^-x)/2
사용 예
//C언어 표준 라이브러리 함수 가이드 //double cosh(double x); 쌍곡선 cosine 함수 //float coshf(float x); 쌍곡선 cosine 함수 //long double coshl(long double x); 쌍곡선 cosine 함수 //0에서 5.0까지 쌍곡선 cosine 값 #include <math.h> #include <stdio.h> int main(void) { double x; for (x = 0; x <= 5.0; x += 1.0) { printf("cosh(%f)=%f\n", x, cosh(x)); printf("cosh(%f)=%f\n", -x, cosh(-x)); } return 0; }
출력
cosh(0.000000)=1.000000 cosh(-0.000000)=1.000000 cosh(1.000000)=1.543081 cosh(-1.000000)=1.543081 cosh(2.000000)=3.762196 cosh(-2.000000)=3.762196 cosh(3.000000)=10.067662 cosh(-3.000000)=10.067662 cosh(4.000000)=27.308233 cosh(-4.000000)=27.308233 cosh(5.000000)=74.209949 cosh(-5.000000)=74.209949