[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 #include int main(void){ double x; for (x = 0; x