Closed dholtz closed 10 years ago
The function below uses jStat.normal which doesn't appear to be in the latest version.
Formula.NORMSDIST = function (z, cumulative) { return (cumulative) ? jStat.normal.cdf(z, 0, 1) : jStat.normal.pdf(z, 0, 1); };
formula.js is using jStat v0.0.2
It's there and working as expected.
The function below uses jStat.normal which doesn't appear to be in the latest version.