(p, mean, stdev)
| 119489 | return cumulativeNormal(Math.log(value), mean, stdev); |
| 119490 | } |
| 119491 | function quantileLogNormal(p, mean, stdev) { |
| 119492 | return Math.exp(quantileNormal(p, mean, stdev)); |
| 119493 | } |
| 119494 | function lognormal(mean, stdev) { |
| 119495 | let mu, sigma; |
| 119496 | const dist = { |
no test coverage detected