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?
views:
1576answers:
3
+2
A:
Apache Commons - Math has what you are looking for.
More specifically, check out the NormalDistrubitionImpl
class.
Yuval A
2009-01-14 12:33:41
That seems to work too, as the colt-library. Thanks alot.
Mnementh
2009-01-14 15:44:35
+1
A:
SuanShu, a Java numerical analysis library, computes the normal distribution and many other statistical distributions.
Ryu
2010-06-24 16:59:24