C언어/C언어 예제

[math.h] cosh, coshf, coshl 함수 예제 코드, 쌍곡선 cosine 함수

언제나휴일 2016. 5. 10. 07:29
반응형

[math.h] cosh, coshf, coshl 함수 예제 코드, 쌍곡선 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 함수

//-5.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


프로그래밍 언어 및 기술 학습, 무료 동영상 강의 언제나 휴일 티스토리

반응형