1ν•™λ…„ (2023)/C μ–Έμ–΄

[C] math.h 라이브러리

waterproof 2023. 7. 16. 21:29

 

 


math.hλŠ” μ—¬λŸ¬ μˆ˜ν•™ ν•¨μˆ˜λ“€μ„ ν¬ν•¨ν•˜λŠ” C μ–Έμ–΄μ˜ ν‘œμ€€ λΌμ΄λΈŒλŸ¬λ¦¬μ΄λ‹€.

λŒ€λΆ€λΆ„μ˜ ν•¨μˆ˜λ“€μ΄ λΆ€λ™μ†Œμˆ˜μ μ„ 닀루며, κ°λ„λŠ” λΌλ””μ•ˆμ„ μ‚¬μš©ν•œλ‹€.

 

 

 

 

좜처 - μœ„ν‚€λ°±κ³Ό: https://ko.wikipedia.org/wiki/C_%EC%88%98%EC%8B%9D_%ED%95%A8%EC%88%98

 

C μˆ˜μ‹ ν•¨μˆ˜ - μœ„ν‚€λ°±κ³Ό, 우리 λͺ¨λ‘μ˜ 백과사전

μœ„ν‚€λ°±κ³Ό, 우리 λͺ¨λ‘μ˜ 백과사전. C μˆ˜μ‹ ν•¨μˆ˜λŠ” 기초 μˆ˜μ‹ ν•¨μˆ˜λ“€μ„ κ΅¬ν˜„ν•˜λŠ” C ν”„λ‘œκ·Έλž˜λ° μ–Έμ–΄μ˜ ν‘œμ€€ 라이브러리 μ•ˆμ˜ ν•¨μˆ˜λ“€μ˜ λͺ¨μž„이닀.[1][2] ν•¨μˆ˜ κ°œμš”[νŽΈμ§‘] math.hλŠ” μ—¬λŸ¬ μˆ˜ν•™ ν•¨μˆ˜λ“€μ„

ko.wikipedia.org

 

 

 


Cμ–Έμ–΄ 곡식 μ›ΉνŽ˜μ΄μ§€ - Common mathematical functions: https://en.cppreference.com/w/c/numeric/math

 

Common mathematical functions - cppreference.com

[edit] Functions computes absolute value of an integral value (\(\small{|x|}\)|x|) (function) [edit] computes quotient and remainder of integer division (function) [edit] computes absolute value of an integral value (\(\small{|x|}\)|x|) (function) [edit] c

en.cppreference.com

 

 

 


 

math.h 라이브러리의 ν•¨μˆ˜λ“€μ€ λ‹€μ–‘ν•œ μˆ˜ν•™ 계산에 μ‚¬μš©λ˜λ©°, 수치 계산, 삼각 ν•¨μˆ˜ 계산, μ§€μˆ˜ 및 둜그 μ—°μ‚°, 반올림 등에 μœ μš©ν•˜λ‹€. 이 라이브러리의 ν•¨μˆ˜λ“€μ„ μ‚¬μš©ν•˜λ©΄ μˆ˜ν•™μ μΈ 계산을 쉽고 효율적으둜 μ²˜λ¦¬ν•  수 μžˆλ‹€.

 

예λ₯Ό λ“€μ–΄, λ‹€μŒκ³Ό 같이 math.h 라이브러리의 ν•¨μˆ˜λ₯Ό μ‚¬μš©ν•˜μ—¬ μ›μ£Όμœ¨ πλ₯Ό 계산할 수 μžˆλ‹€:

 

1
2
3
4
5
6
7
8
#include <stdio.h>
#include <math.h>
 
int main() {
    double pi = M_PI;
    printf("μ›μ£Όμœ¨ Ο€λŠ” %.15f μž…λ‹ˆλ‹€.\n", pi);
    return 0;
}
cs

 

μœ„ μ˜ˆμ œμ—μ„œ M_PIλŠ” math.h λΌμ΄λΈŒλŸ¬λ¦¬μ— 미리 μ •μ˜λœ μƒμˆ˜λ‘œμ„œ μ›μ£Όμœ¨ 값을 λ‚˜νƒ€λ‚Έλ‹€.

좜λ ₯ κ²°κ³ΌλŠ” 3.141592653589793κ³Ό 같이 μ›μ£Όμœ¨μ˜ 근사값이 좜λ ₯될 것이닀.