简单四舍五入 |
|
function DIV(a,b) return (a - a % b) / b end
在除法运算中获得整数结果。 (JlnWntr)
以下函数将数字四舍五入到给定的小数位数。
function round(num, numDecimalPlaces) local mult = 10^(numDecimalPlaces or 0) return math.floor(num * mult + 0.5) / mult end
这里有一个替代实现
function round2(num, numDecimalPlaces) return tonumber(string.format("%." .. (numDecimalPlaces or 0) .. "f", num)) end
两者都与 Lua 5.0 和 5.1 兼容。
如果数字被四舍五入以便打印,则删除 tonumber:将数字转换为数字然后转换回字符串会重新引入舍入误差。
测试
> function test(a, b) print(round(a,b), round2(a,b)) end > test(43245325.9995, 3) 43245326 43245325.999 > test(43245325.9994, 3) 43245325.999 43245325.999 > test(43245325.5543654) 43245326 43245326 > test(43245325.5543654, 3) 43245325.554 43245325.554 > test(43245325.5543654, 4) 43245325.5544 43245325.5544
注意:如果 numDecimalPlaces 为负数,第一个函数将表现异常,因此此版本可能更健壮(Robert Jay Gould)
round(1023.4345, -2) = 1000 round(1023.4345, 2) = 1023.43(Tom P.)
function round(num, numDecimalPlaces) if numDecimalPlaces and numDecimalPlaces>0 then local mult = 10^numDecimalPlaces return math.floor(num * mult + 0.5) / mult end return math.floor(num + 0.5) end
function round(num) return math.floor(num+.5) end
对于 -.5 可能会有意想不到的结果?请参见下文。
-- Henning
function round(num) if num >= 0 then return math.floor(num+.5) else return math.ceil(num-.5) end end
注意 math.ceil(num-.5) ~= math.floor(num+.5) 例如对于 -.5 来说 math.ceil(num-.5) == -1 math.floor(num+.5) == 0
示例:1.1 -> 1, 1 -> 1, 0.9 -> 1, 0.5 -> 1, 0.1 -> 0, 0 -> 0, -0.1 -> 0, -0.4 -> 0, -0.5 -> -1, -0.6 -> -1, -0.9 -> -1, -1: -1, -1.1: -1
-- Henning
function round(num) under = math.floor(num) upper = math.floor(num) + 1 underV = -(under - num) upperV = upper - num if (upperV > underV) then return under else return upper end end
function round(num, numDecimalPlaces) local mult = 10^(numDecimalPlaces or 0) if num >= 0 then return math.floor(num * mult + 0.5) / mult else return math.ceil(num * mult - 0.5) / mult end end
-- Igor Skoric ([email protected])
function round(n, mult) mult = mult or 1 return math.floor((n + mult/2)/mult) * mult end
--should round and give negatives too if I'm not mistaken function round(num, numDecimalPlaces) if numDecimalPlaces and numDecimalPlaces>0 then local mult = 10^numDecimalPlaces return math.floor(num * mult + 0.5) / mult else numDecimalPlaces = numDecimalPlaces mult 2 -- negates its negative status local mult = 10^numDecimalPlaces return math.floor(num * mult + 0.5) / mult ide = numDecimalPlaces / (numDecimalPlaces/2) end return math.floor(num + 0.5) end
Math.modf 是你的朋友!
if num<0 then x=-.5 else x=.5 end Integer, decimal = math.modf(num+x)整数将等于 num,四舍五入为正数和负数。
为了四舍五入到小数位,我使用
roundto=10 if num*roundto<0 then x=-.5 else x=.5 end Integer, decimal = math.modf(num*roundto+x) result = Integer/roundto
result 将等于四舍五入到小数位 "roundto" 的数字
function round(n) return math.floor((math.floor(n*2) + 1)/2) end
function math.sign(v) return (v >= 0 and 1) or -1 end function math.round(v, bracket) bracket = bracket or 1 return math.floor(v/bracket + math.sign(v) * 0.5) * bracket end这样,你就可以在任何括号上进行四舍五入
math.round(119.68, 6.4) -- 121.6 (= 19 * 6.4)它也适用于“小数位数”,并且具有相当直观的表示
math.round(119.68, 0.01) -- 119.68 math.round(119.68, 0.1) -- 119.7 math.round(119.68) -- 120 math.round(119.68, 100) -- 100 math.round(119.68, 1000) -- 0
我想知道谁会创建下一个舍入函数?-- Lucids