MCPcopy Create free account
hub / github.com/microsoft/SandDance / cumulativeLogNormal

Function cumulativeLogNormal

docs/app/js/sanddance-app.js:119488–119490  ·  view source on GitHub ↗
(value, mean, stdev)

Source from the content-addressed store, hash-verified

119486 return Math.exp(-0.5 * z * z) / (stdev * SQRT2PI * value);
119487}
119488function cumulativeLogNormal(value, mean, stdev) {
119489 return cumulativeNormal(Math.log(value), mean, stdev);
119490}
119491function quantileLogNormal(p, mean, stdev) {
119492 return Math.exp(quantileNormal(p, mean, stdev));
119493}

Callers 1

lognormalFunction · 0.70

Calls 2

cumulativeNormalFunction · 0.70
logMethod · 0.45

Tested by

no test coverage detected