[math.h] acosh, acoshf, acoshl 함수 사용 예제, 쌍곡선 arc cosine 함수 쌍곡선 함수는 삼각함수 sine, cosine, tangent에서 유추하여 만든 함수입니다. arccosh(x) = ln(x+root(x^2 - 1) , 단 x>= 1 입니다. //C언어 표준 라이브러리 함수 가이드//double acosh(double x); 쌍곡선 arc cosine 함수//float acoshf(float x); 쌍곡선 arc cosine 함수//long double acoshl(long double x); 쌍곡선 arc cosine 함수 #include #include int main(void){ double x; for (x = 1.0; x