Apache Commons Math
Go to file
Tim O'Brien 703fbafa34 Contributions from Brent Worden - Bugzilla Issue 20279
* a distribution factory following the abstract factory pattern.
The value being, if users want to swap out the default distribution
implementations with their own, why stop them.  The factory is responsible for
create the distribution instances (only continuous ones for now).

* Each distribution has a cummulativeProbabilty method which returns the value of
the CDF for a given value.  By default, via the abstract distribution base
class, an inverseCummulativeProbability method is all provided for all
distributions.  It's implementation is generically handled by applying root
finding techniques to the cummulativeProbability method.  That way, when new
distributions are added, authors only need to create the CDF method and the
inverse is provided automatically.

* Currenty, the only distributions are Chi-Squared and Gamma (one actually since
Chi-Squared is a specialized Gamma) but more are planned.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@140861 13f79535-47bb-0310-9956-ffa450edef68
2003-05-29 19:34:38 +00:00
src Contributions from Brent Worden - Bugzilla Issue 20279 2003-05-29 19:34:38 +00:00
xdocs Added mdiggory patch for developer resources 2003-05-22 16:55:22 +00:00
.cvsignore Mavenization phase one - moving documentation build to maven, will complete by generating build.xml etc later. 2003-05-20 10:24:32 +00:00
PROPOSAL.html Added myself to STATUS and PROPOSAL 2003-05-12 20:32:26 +00:00
RELEASE-NOTES.txt added new commons math component 2003-05-12 15:07:54 +00:00
STATUS.html Submitted by: Phil S. 2003-05-15 05:47:51 +00:00
build.properties.sample added new commons math component 2003-05-12 15:07:54 +00:00
build.xml Altered the build script to use batch test instead of running 2003-05-18 00:55:18 +00:00
checkstyle.properties project.properties changes. 1. The build will not fail on a failed 2003-05-21 15:10:51 +00:00
project.properties project.properties changes. 1. The build will not fail on a failed 2003-05-21 15:10:51 +00:00
project.xml Adds the one sample, t-test statistic to TestStatistic and implementations. 2003-05-26 17:29:36 +00:00