1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| math包主要处理数学相关的运算。math包定义了两个常数: math.e math.pi math.inf
此外,math包还有各种运算函数 (下面函数的功能可以参考数学手册): math.ceil(x) math.floor(x) math.pow(x,y) math.log(x) math.sqrt(x)
三角函数: math.sin(x), math.cos(x), math.tan(x), math.asin(x), math.acos(x), math.atan(x)
这些函数都接收一个弧度(radian)为单位的x作为参数。
角度和弧度互换: math.degrees(x), math.radians(x)
双曲函数: math.sinh(x), math.cosh(x), math.tanh(x), math.asinh(x), math.acosh(x), math.atanh(x)
特殊函数: math.erf(x), math.gamma(x)
|