Re: Suggestion: math.between()
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Suggestion: math.between()
- From: Jeff Pohlmeyer <yetanothergeek@...>
- Date: 2010年6月21日 19:13:07 -0500
function math.mean(...)
local argc=select("#",...)
local total=0
for i=1,argc do
total=total+(select(i,...))
end
return total/argc
end
- Jeff