sutoiku / formula.js

JavaScript implementation of most Microsoft Excel formula functions
Other
2.14k stars 293 forks source link

jStat.normal no longer exists #10

Closed dholtz closed 10 years ago

dholtz commented 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);
    };
jalateras commented 10 years ago

formula.js is using jStat v0.0.2

jalateras commented 10 years ago

It's there and working as expected.