erlang math 模組中的方法有:
-export([pi/0]).
-export([sin/1, cos/1, tan/1, asin/1, acos/1, atan/1, atan2/2, sinh/1,
cosh/1, tanh/1, asinh/1, acosh/1, atanh/1, exp/1, log/1,
log10/1, pow/2, sqrt/1, erf/1, erfc/1]).
說明:pi() -> 3.1415926535897932.
sin: 正弦 (對邊 / 斜邊)
cos: 余弦 (鄰邊 / 斜邊)
tan: 正切 (對邊 / 鄰邊)
asin: 反正弦函式 (函式y=sin(x),x∈[-1,1]的反函式叫做反正弦函式,記作y=asin(x) )
acos: 反余弦函式 (函式y=cos(x),x∈[0,π]的反函式叫做反余弦函式,記作y=acos(x) )
atan: 反正切函式 (函式y=tan(x), x∈r的反函式,記作y=atan(x),叫做反正切函式。其值域為(-π/2,π/2) )
atan2(y,x): 所表達的意思是座標原點為起點,指向(x,y)的射線在座標平面上與x軸正方向之間的角的角度。
sinh:
雙曲正弦函式
cosh:
雙曲余弦函式
tanh:
雙曲正切函式
asinh:
反雙曲正弦函式
acosh:
反雙曲余弦函式
atanh:
反雙曲正切函式
exp:
自然常數e為底的指數函式 (然常數e約為:2.71828)
math:exp(2).
% 7.38905609893065
log:
然常數e的對數函式 (e^b=n,那麼log n=b)
math:log(2.71828).
% 0.999999327347282
log10:
10的對數函式 (10^b=n,那麼log n=b)
math:log10(1000).
% 3.0
pow:
指數函式 (y=a^x)
math:pow(3,4).
% 3*3*3*3=81.0
math:pow(9,1/2).
% 3.0
sqrt:
平方根 math:sqrt(9).
% 3.0
erf:
誤差函式
erfc:
餘補誤差函式
反函式的定義:
一般地,設函式y=f(x)(x∈a)的值域是c,若找得到乙個函式g(y)在每一處g(y)都等於x,這樣的函式x= g(y)(y∈c)叫做函式y=f(x)(x∈a)的反函式。
在函式x=g(y)中,y是自變數,x是函式,但習慣上,我們一般用x表示自變數,用y 表示函式,為此我們常常對調函式x=g(y)中的字母x,y,把它改寫成y=g(x)
Python中有關時間的模組
time 模組 datetime 模組 對date time datetime 三種時間模式進行單獨管理 datetime.date 處理日期 年 月 日 datatime.time 處理時間 時分秒,毫秒 datetime.datetime 處理日期 和 時間 datetime.timedelta...
python模組都有哪些 python有哪些模組
2016 08 05 回答 urtle庫是python語言中乙個很流行的繪製影象的函式庫,想象乙個小烏龜,在乙個橫軸為x 縱軸為y的座標系原點,0,0 位置開始,它根據一組函式指令的控制,在這個平面座標系中移動,從而在它爬行的路徑上繪製了圖形。turtle繪圖的基礎知識 1.畫布 canvas 畫布...
Python OS模組中有關路徑的函式
os全名為operating system 作業系統 python中的os模組封裝了常見的檔案和目錄操作。python中文文件 os.path模組主要用於檔案的屬性獲取,exists是 存在 的意思,所以顧名思義,os.path.exists 就是判斷括號裡的檔案是否存在的意思,括號內的可以是檔案路...