方法介绍
方法名称:数字的自然对数
语法:math.log(number)
参数说明:number可以是任意有效的数值表达式
返回值
浮点型:返回number的自然对数
方法例子
local ret = math.log(2.0)
print(ret)