[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 <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
프로그래밍 언어 및 기술 학습, 무료 동영상 강의 언제나 휴일 티스토리
'C언어 > C언어 예제' 카테고리의 다른 글
[math.h] atanh, atanhf, atanhl 함수 사용 예제 코드, 쌍곡선 arc tangent 함수 (0) | 2016.05.10 |
---|---|
[math.h] asinh, asinhf, asinhl 함수 사용 예제 코드, 쌍곡선 arc sine 함수 (0) | 2016.05.10 |
[math.h] fmod, fmodf, fmodl 함수 사용 예제 코드, 분자와 분모를 입력받아 몫과 나머지 계산 (0) | 2016.05.09 |
[math.h] floor, floorf, floorl 함수 사용 예제 코드, 소수점 이하 자리 버림 (0) | 2016.05.09 |
[math.h] ceil, ceilf, ceill 함수 사용 예제 코드, 소수점 첫번째 자리에서 올림 (0) | 2016.05.09 |