版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
1、Math庫實用匯總在FP中,Math庫為我們提供了豐富的數學函數。以下介紹在OI中可能會用到的Math庫中一些函數、過程。使用方法:在程序頭用Uses語句加載Math庫例子:Program Ex_Math;Uses Math;BeginWriteln(hypot(3,4);End.函數介紹:hypot原型:function hypot(x:float;y:float):float功能:返回直角三角形中較長邊的長度,也就是sqrt(sqr(x)+sqr(y)ceil原型:function ceil(x:float):Integer功能:返回比參數大的最小整數引發(fā)錯誤:在x超出Integer的范圍
2、時會引發(fā)溢出錯誤floor原型:function floor(x:float):Integer功能:返回參數小的最大整數引發(fā)錯誤:在x超出Integer的范圍時會引發(fā)溢出錯誤power原型:function power(base:float;exponent:float):float功能:返回base的exponent次方引發(fā)錯誤:在base為負數且exponent為小數時intpower原型:function intpower(base:float;const exponent:Integer):float功能:返回base的exponent次方ldexp原型:function ldexp(
3、x:float;const p:Integer):float功能:返回2的p次方乘以xlog10原型:function log10(x:float):float功能:返回x的常用對數log2原型:function log2(x:float):float功能:返回x以2為底的對數logn原型:function logn(n:float;x:float):float功能:返回x以n為底的對數Max原型:function Max(a:Integer;b:Integer):Integerfunction Max(a:Int64;b:Int64):Int64function Max(a:Extended
4、;b:Extended):Extended功能:返回a與b中較大的一個Min原型:function Min(a:Integer;b:Integer):Integerfunction Min(a:Int64;b:Int64):Int64function Min(a:Extended;b:Extended):Extended功能:返回a與b中較小的一個arcsin原型:function arcsin(x:float):float功能:返回x的反正弦值,返回的是弧度指單位arccon原型:function arccon(x:float):float功能:返回x的反余弦值,返回的是弧度指單位tan原型
5、:function tan(x:float):float功能:返回x的正切值,x以弧度為單位cotan原型:function cotan(x:float):float功能:返回x的余切值,x以弧度為單位arcsinh原型:function arcsinh(x:float):float功能:返回雙曲線的反正弦arccosh原型:function arccosh(x:float):float功能:返回雙曲線的反余弦arctanh原型:function arctanh(x:float):float功能:返回雙曲線的反正切sinh原型:function sinh(x:float):float功能:返回
6、雙曲線的正弦cosh原型:function sinh(x:float):float功能:返回雙曲線的正弦tanh原型:function sinh(x:float):float功能:返回雙曲線的正切cycletorad原型:function cycletorad(cycle:float):float功能:返回圓的份數轉換成弧度之后的值degtorad原型:function degtorad(deg:float):float功能:返回角度轉換成弧度之后的值radtocycle原型:function radtocycle(rad:float):float功能:返回弧度轉換成圓的份數之后的值radto
7、deg原型:function radtodeg(rad:float):float功能:返回弧度轉換成角度之后的值MaxValue原型:function maxvalue(const data:Array of float):floatfunction maxvalue(const data:Array of Integer):Integerfunction maxvalue(const data:PFloat;const N:Integer):floatfunction maxvalue(const data:PInteger;const N:Integer):Integer功能:返回數組中的
8、最大值MinValue原型:function minvalue(const data:Array of float):floatfunction minvalue(const data:Array of Integer):Integerfunction minvalue(const data:PFloat;const N:Integer):floatfunction MinValue(const Data:PInteger;const N:Integer):Integer功能:返回數組中的最小值sum原型:function sum(const data:Array of float):floa
9、tfunction sum(const data:PFloat;const N:LongInt):float功能:求數組中所有數之和sumsandsquares原型:procedure sumsandsquares(const data:Array of float;var sum:float;var sumofsquares:float)procedure sumsandsquares(const data:PFloat;const N:Integer;var sum:float;var sumofsquares:float)功能:將數組中的數求和方如num中,求平方和放入sumofsqua
10、res中例子:(注:以下全都在已經uses math的前提下進行的。)begin Writeln(hypot(6,8); /輸出10。102=62+82end.begin writeln(ceil(3.4);/4 writeln(ceil(3.7);/4 writeln(ceil(-3.4);/-3 writeln(ceil(-3.7);/-3 writeln(floor(3.4);/3 writeln(floor(3.7);/3 writeln(floor(-3.4);/-4 writeln(floor(-3.7);/-4end.begin writeln(power(1.1,1.1):2:
11、3); writeln(power(-1.1,3):2:3); writeln(power(1.1,-1.1):2:3); writeln(intpower(1.1,2):2:3); writeln(intpower(4.1,-2):2:3); writeln(intpower(-1.1,2):2:3); writeln(ldexp(2,4):8:4); / 32.0000 writeln(ldexp(0.5,3):8:4);/ 4.0000 writeln(ldexp(-3,3):8:4); / -24.000 Writeln(Log10(10):8:4); Writeln(Log10(1)
12、:8:4); Writeln(Log10(0.1):8:4); Writeln(Log2(4):8:4); Writeln(Log2(0.5):8:4); Writeln(Logn(3,4):8:4); Writeln(Logn(exp(1),exp(1):8:4); writeln(max(1,2); writeln(min(1,2);end.begin writeln(arccos(0.5)/pi); writeln(arcsin(0.5)/pi); writeln(arctan(0.5)/pi); /這個不在math庫里,在system庫里就有 writeln(cos(pi/6); /這
13、個不在math庫里,在system庫里就有 writeln(sin(pi/6); /這個不在math庫里,在system庫里就有 writeln(tan(pi/6); writeln(cotan(pi/6);end.begin /返回的是雙曲線的 | 定義域 writeln(arcosh(2);/反余弦 | R writeln(arsinh(2);/反正弦 | R writeln(artanh(0.1);/反正切 | -1,1 writeln(cosh(2);/余弦 | R writeln(sinh(2);/正弦 | R writeln(tanh(2);/正切 | Rend.begin /角度、弧度、圓的相互轉換,圓是指這么大的角占多少個圓 writeln(cycletorad(1/6)/pi);/圓到弧度 writeln(degtorad(90)/pi);/角度到弧度 writeln(radtocycle(pi/2);/弧度到圓 writeln(radtodeg(pi/3);/弧度到角度end.Var I:Integer; a:array1.10 of float;/一定要是longint或float,就是32為變量begin Randomize ; for I:=low(a) to high (a) do begin ai:=random
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
- 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024版機電設備安裝合同范本
- 2024版學校廢物管理承包合同3篇
- 2025年度電子元器件展參展商權益保障協(xié)議模板3篇
- 2025年度城市垃圾分類處理承包合同3篇
- 2025年度房屋租賃管理及押金合同4篇
- 二零二四平安普惠企業(yè)融資借款合同3篇
- 2025版路燈設施智能監(jiān)控系統(tǒng)建設合同4篇
- 2025年度高新技術產業(yè)園區(qū)廠房租賃合同補充協(xié)議3篇
- 2024離婚訴訟費用分擔及財產處理合同
- 2025年度旅游景區(qū)旅游安全風險評估與應急預案合同4篇
- 安徽省合肥市2021-2022學年七年級上學期期末數學試題(含答案)3
- 教育專家報告合集:年度得到:沈祖蕓全球教育報告(2023-2024)
- 肝臟腫瘤護理查房
- 護士工作壓力管理護理工作中的壓力應對策略
- 2023年日語考試:大學日語六級真題模擬匯編(共479題)
- 皮帶拆除安全技術措施
- ISO9001(2015版)質量體系標準講解
- 《培訓資料緊固》課件
- 黑龍江省政府采購評標專家考試題
- 成品煙道安裝施工方案
- 醫(yī)療免責協(xié)議書范本
評論
0/150
提交評論