一些數(shù)學(xué)計算的公式的具體實(shí)現(xiàn)是放在math.h里,具體有:
10年積累的網(wǎng)站制作、網(wǎng)站建設(shè)經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先做網(wǎng)站后付款的網(wǎng)站建設(shè)流程,更有鹿邑免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
double sin (double x); x的正弦值
double cos (double x); x的余弦值
double tan (double x); x的正切值
double asin (double x); 結(jié)果介于[-PI/2, PI/2],x值域為[-1,1]
double acos (double x); 結(jié)果介于[0, PI],x值域為[-1,1]
double atan (double x); 反正切(主值), 結(jié)果介于[-PI/2, PI/2]
double atan2 (double y, double x); 反正切(整圓值), 結(jié)果介于[-PI, PI]
double sinh (double x); x的雙曲正弦值
double cosh (double x); x的雙曲余弦值
double tanh (double x); x的雙曲正切值
double exp (double x); 冪函數(shù)e^x
double pow (double x, double y); x^y,如果x=0且y=0,或者x0且y不是整型數(shù),將產(chǎn)生定義域錯誤
double sqrt (double x); x的平方根,其中x=0
double log (double x); 以e為底的對數(shù),自然對數(shù),x0
double log10 (double x); 以10為底的對數(shù),x0
double ceil (double x); 取上整
double floor (double x); 取下整
double fabs (double x); x的絕對值
double frexp (double x, int *exp); 標(biāo)準(zhǔn)化浮點(diǎn)數(shù), x = f * 2^exp, 已知x求f, exp ( x介于[0.5, 1] )并返回f值
double ldexp (double x, int exp); 與frexp相反, 已知x, exp求x*2^exp
double modf (double x, double *ip); 將參數(shù)的整數(shù)部分通過指針回傳, 返回小數(shù)部分,整數(shù)部分保存在*ip中
double fmod (double x, double y); 返回兩參數(shù)相除x/y的余數(shù),符號與x相同。如果y為0,則結(jié)果與具體的額實(shí)現(xiàn)有關(guān)
在C語言里面按一下CTRL+F1,選擇header file、math.h就可以看到你要的東西,我看到了粘貼如下:
Functions
abs floor
acos fmod
asin frexp
atan hypot
atan2 labs
atof ldexp
cabs log
ceil log10
cos matherr
cosh modf
exp poly
fabs pow
pow10 sqrt
sin tan
sinh tanh
Constants, data types, and global variables
complex exception
EDOM HUGE_VAL
ERANGE _mexcep
數(shù)學(xué)函數(shù)庫,一些數(shù)學(xué)計算的公式的具體實(shí)現(xiàn)是放在math.h里,具體有:
1 三角函數(shù)
double sin (double);
double cos (double);
double tan (double);
2 反三角函數(shù)
double asin (double); 結(jié)果介于[-PI/2, PI/2]
double acos (double); 結(jié)果介于[0, PI]
double atan (double); 反正切(主值), 結(jié)果介于[-PI/2, PI/2]
double atan2 (double, double); 反正切(整圓值), 結(jié)果介于[-PI/2, PI/2]
3 雙曲三角函數(shù)
double sinh (double);
double cosh (double);
double tanh (double);
4 指數(shù)與對數(shù)
double exp (double);
double sqrt (double);
double log (double); 以e為底的對數(shù)
double log10 (double);
double pow(double x, double y)//計算以x為底數(shù)的y次冪
5 取整
double ceil (double); 取上整
double floor (double); 取下整
6 絕對值
double fabs (double);
double cabs(struct complex znum) //求復(fù)數(shù)的絕對值
7 標(biāo)準(zhǔn)化浮點(diǎn)數(shù)
double frexp (double f, int *p); 標(biāo)準(zhǔn)化浮點(diǎn)數(shù), f = x * 2^p, 已知f求x, p ( x介于[0.5, 1] )
double ldexp (double x, int p); 與frexp相反, 已知x, p求f
8 取整與取余
double modf (double, double*); 將參數(shù)的整數(shù)部分通過指針回傳, 返回小數(shù)部分
double fmod (double, double); 返回兩參數(shù)相除的余數(shù)
9其他
double hypot(double x, double y);//已知直角三角形兩個直角邊長度,求斜邊長度
double ldexp(double x, int exponent);//計算x*(2的exponent次冪)
double poly(double x, int degree, double coeffs [] )//計算多項式
nt matherr(struct exception *e)//數(shù)學(xué)錯誤計算處理程序
source: 《C C++ Code Capsules》
常用的(1)I/O 函數(shù)。包括各種控制臺I/O、緩沖型文件I/O和UNIX式非緩沖型文件I/O操作。 需要的包含文件:stdio.h 例如: getchar,putchar,printf,scanf,fopen,fclose,fgetc,fgets,fprintf,fsacnf,fputc,fputs,fseek,fread,fwrite等。 (2)字符串、內(nèi)存和字符函數(shù)。包括對字符串進(jìn)行各種操作和對字符進(jìn)行操作的函數(shù)。 需要的包含文件:string.h、mem.h、ctype.h或string.h 例如:用于檢查字符的函數(shù):isalnum,isalpha,isdigit,islower,isspace等。用于字符串操作函數(shù):strcat,strchr,strcmp,strcpy,strlen,strstr等。 (3)數(shù)學(xué)函數(shù)。包括各種常用的三角函數(shù)、雙曲線函數(shù)、指數(shù)和對數(shù)函數(shù)等。 需要的包含文件:math.h 例如:sin,cos,exp(e的x次方),log,sqrt(開平方),pow(x的y次方)等。 (4)時間、日期和與系統(tǒng)有關(guān)的函數(shù)。對時間、日期的操作和設(shè)置計算機(jī)系統(tǒng)狀態(tài)等。 需要的包含文件:time.h 例如:time返回系統(tǒng)的時間;asctime返回以字符串形式表示的日期和時間。 (5)動態(tài)存儲分配。包括"申請分配"和"釋放"內(nèi)存空間的函數(shù)。 需要的包含文件:alloc.h或stdlib.h 例如:calloc,free,malloc,realloc等。