Lua 数学函数

匿名 (未验证) 提交于 2019-12-03 00:22:01
pimath.pi3.1415926535898
absmath.abs(-2012)2012
ceilmath.ceil(9.1)10
floormath.floor(9.9)9
maxmath.max(2,4,6,8)8
minmath.min(2,4,6,8)2
powmath.pow(2,16)65536
sqrtmath.sqrt(65536)256
mod取模math.mod(65535,2)1
modfmath.modf(20.12)20   0.12
randomseedmath.randomseed(os.time()) 
randommath.random(5,90)5~90
radmath.rad(180)3.1415926535898
degmath.deg(math.pi)180
expmath.exp(4)54.598150033144
logmath.log(54.598150033144)4
log10math.log10(1000)3
frexpmath.frexp(160)0.625    8
ldexpmath.ldexp(0.625,8)160
sin姝e鸡math.sin(math.rad(30))0.5
cosmath.cos(math.rad(60))0.5
tanmath.tan(math.rad(45))1
asinmath.deg(math.asin(0.5))30
acosmath.deg(math.acos(0.5))60
atanmath.deg(math.atan(1))45
转载请标明出处:Lua 数学函数
文章来源: Lua 数学函数
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!