For a project I have a specification with formulas, I have to implement. In these formulas a cumulative standard normal distribution function exists, that takes a float and outputs a probability. The function is symbolized by a Φ. Exists a Java-library, that computes this function?
|
feedback
|
|
Apache Commons - Math has what you are looking for. More specifically, check out the | |||
|
feedback
|
|
A co-worker suggested colt, as he used it before. This function has exactly the result as the example in the reference document. | ||||
|
feedback
|
|
SuanShu, a Java numerical analysis library, computes the normal distribution and many other statistical distributions. | |||
|
feedback
|
|
If you want the exact code, this one seems to be the same function used in OpenOffice Calc (I've made some changes for it to work in java):
Found it here: http://www.codeproject.com/Messages/2622967/Re-NORMSDIST-function.aspx | |||
|
feedback
|