找回密码
 register

QQ登录

只需一步,快速开始

查看: 165|回复: 0

LUA 数学函数

[复制链接]

LUA 数学函数

[复制链接]
  • 打卡等级:热心大叔
  • 打卡总天数:94
  • 打卡月天数:17
  • 打卡总奖励:94
  • 最近打卡:2025-01-18 01:28:20
Waylee

主题

0

回帖

1万

积分

仙帝

积分
12100
Waylee 2022-1-9 22:36 | 显示全部楼层 |阅读模式

马上注册,查看网站隐藏内容!!

您需要 登录 才可以下载或查看,没有账号?register

×
  1. 函数名        函数功能        示例        示例结果
  2. abs        取绝对值        math.abs(-15)        15
  3. acos        反余弦函数        math.acos(0.5)        1.04719755
  4. asin        反正弦函数        math.asin(0.5)        0.52359877
  5. atan2        x / y的反正切值        math.atan2(90.0, 45.0)        1.10714871
  6. atan        反正切函数        math.atan(0.5)        0.463647609
  7. ceil        不小于x的最大整数        math.ceil(5.8)        6
  8. cosh        双曲线余弦函数        math.cosh(0.5)        1.276259652
  9. cos        余弦函数        math.cos(0.5)        0.87758256
  10. deg        弧度转角度        math.deg(math.pi)        180
  11. exp        计算以e为底x次方值        math.exp(2)        2.718281828
  12. floor        不大于x的最大整数        math.floor(5.6)        5
  13. fmod (mod)        取模运算        math.mod(14, 5)        4
  14. frexp        把双精度数val分解为数字部分(尾数)和以2为底的指数n,即val=x*2n        math.frexp(10.0)        0.625 4
  15. ldexp        计算value * 2的n次方        math.ldexp(10.0, 3)        80 = 10 * (2 ^3)
  16. log10        计算以10为基数的对数        math.log10(100)        2
  17. log        计算一个数字的自然对数        math.log(2.71)        0.9969
  18. max        取得参数中最大值        math.max(2.71, 100, -98, 23)        100
  19. min        取得参数中最小值        math.min(2.71, 100, -98, 23)        -98
  20. modf        把数分为整数和小数        math.modf(15.98)        15 98
  21. pow        得到x的y次方        math.pow(2, 5)        32
  22. rad        角度转弧度        math.rad(180)        3.141592654
  23. random        获取随机数        math.random(1, 100)        获取1-100的随机数
  24. randomseed        设置随机数种子        math.randomseed(os.time())        在使用math.random函数之前必须使用此函数设置随机数种子
  25. sinh        双曲线正弦函数        math.sinh(0.5)        0.5210953
  26. sin        正弦函数        math.sin(math.rad(30))        0.5
  27. sqrt        开平方函数        math.sqrt(16)        4
  28. tanh        双曲线正切函数        math.tanh(0.5)        0.46211715
  29. tan        正切函数        math.tan(0.5)        0.5463024
复制代码

您需要登录后才可以回帖 登录 | register

本版积分规则

雪舞知识库 | 浙ICP备15015590号-1 | 萌ICP备20232229号|浙公网安备33048102000118号 |天天打卡

GMT+8, 2025-1-19 07:14 , Processed in 0.094522 second(s), 7 queries , Redis On.

Powered by XueWu Licensed

Copyright © Tencent Cloud.

快速回复 返回顶部 返回列表