fix: remove semicolon.
This commit is contained in:
parent
0bdb94a2d4
commit
c0e6b0677a
|
@ -27,7 +27,7 @@ proc to(low: float, high: float): float =
|
||||||
let loglow = ln(low)
|
let loglow = ln(low)
|
||||||
let loghigh = ln(high)
|
let loghigh = ln(high)
|
||||||
let logmean = (loglow + loghigh)/2
|
let logmean = (loglow + loghigh)/2
|
||||||
let logsigma = (loghigh - loglow) / (2.0 * normal95confidencePoint);
|
let logsigma = (loghigh - loglow) / (2.0 * normal95confidencePoint)
|
||||||
return lognormal(logmean, logsigma)
|
return lognormal(logmean, logsigma)
|
||||||
|
|
||||||
## echo ur_normal()
|
## echo ur_normal()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user