BT编程语言文档
log1p
返回1加上指定数字的自然对数语法 math.log1p(x: Int|Float)
x:必填,接受一个大于-1的数字
// 返回:1.0986122886681098 math.log1p(1) // 返回:0.6931471805599453 math.log1p(0.5) // 返回:0 math.log1p(0)语法 math.log1p(x: Int|Float)
x:必填,接受一个大于-1的数字
// 返回:1.0986122886681098 math.log1p(1) // 返回:0.6931471805599453 math.log1p(0.5) // 返回:0 math.log1p(0)