acosh, acoshf, acoshl 함수

double acosh(double x); 쌍곡선 arc cosine 함수

float acoshf(float x); 쌍곡선 arc cosine 함수

long double acoshl(long double x); 쌍곡선 arc cosine 함수

입력 매개 변수 리스트

x 실수로 1보다 크거나 같아야 합니다.

반환 값

쌍곡선 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 <math.h>
#include <stdio.h>
int main(void)
{
    double x;
    for (x = 1.0; x <= 10.0; x += 1.0)
    {
        printf("acosh(%f)=%f\n", x, acosh(x));
    }
    return 0;
}

출력

acosh(1.000000)=0.000000
acosh(2.000000)=1.316958
acosh(3.000000)=1.762747
acosh(4.000000)=2.063437
acosh(5.000000)=2.292432
acosh(6.000000)=2.477889
acosh(7.000000)=2.633916
acosh(8.000000)=2.768659
acosh(9.000000)=2.887271
acosh(10.000000)=2.993223