Updated user guide page for distributions with updated classnames.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1486701 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-05-27 20:01:37 +00:00
parent 9e56afb7c4
commit 798c27f900
1 changed files with 11 additions and 15 deletions

View File

@ -70,24 +70,20 @@ double upperTail = 1.0 - t.cumulativeProbability(2.75); // P(T &gt;= 2.75)</sour
Since there are numerous distributions and Commons-Math only directly Since there are numerous distributions and Commons-Math only directly
supports a handful, it may be necessary to extend the distribution supports a handful, it may be necessary to extend the distribution
framework to satisfy individual needs. It is recommended that the framework to satisfy individual needs. It is recommended that the
<a href="../apidocs/org/apache/commons/math3/distribution/Distribution.html">Distribution</a>, <a href="../apidocs/org/apache/commons/math3/distribution/RealDistribution.html">RealDistribution</a>,
<a href="../apidocs/org/apache/commons/math3/distribution/ContinuousDistribution.html"> <a href="../apidocs/org/apache/commons/math3/distribution/IntegerDistribution.html">IntegerDistribution</a> and
ContinuousDistribution</a>, <a href="../apidocs/org/apache/commons/math3/distribution/MultivariateRealDistribution.html">MultivariateRealDistribution</a>
<a href="../apidocs/org/apache/commons/math3/distribution/DiscreteDistribution.html"> interfaces serve as base types for any extension. These serve as the basis for all the
DiscreteDistribution</a>, and <a href="../apidocs/org/apache/commons/math3/distribution/IntegerDistribution.html">
IntegerDistribution</a> interfaces serve as
base types for any extension. These serve as the basis for all the
distributions directly supported by Commons-Math and using those interfaces distributions directly supported by Commons-Math and using those interfaces
for implementation purposes will ensure any extension is compatible with the for implementation purposes will ensure any extension is compatible with the
remainder of Commons-Math. To aid in implementing a distribution extension, remainder of Commons-Math. To aid in implementing a distribution extension,
the <a href="../apidocs/org/apache/commons/math3/distribution/AbstractDistribution.html"> the <a href="../apidocs/org/apache/commons/math3/distribution/AbstractRealDistribution.html">AbstractRealDistribution</a>,
AbstractDistribution</a>, <a href="../apidocs/org/apache/commons/math3/distribution/AbstractContinuousDistribution.html"> <a href="../apidocs/org/apache/commons/math3/distribution/AbstractIntegerDistribution.html">AbstractIntegerDistribution</a> and
AbstractContinuousDistribution</a>, and <a href="../apidocs/org/apache/commons/math3/distribution/AbstractIntegerDistribution.html"> <a href="../apidocs/org/apache/commons/math3/distribution/AbstractMultivariateRealDistribution.html">AbstractMultivariateRealDistribution</a>
AbstractIntegerDistribution</a> provide implementation building blocks and provide implementation building blocks and offer basic distribution functionality.
offer basic distribution functionality. By extending these abstract classes By extending these abstract classes directly, much of the repetitive distribution
directly, much of the repetitive distribution implementation is already implementation is already developed and should save time and effort in developing
developed and should save time and effort in developing user-defined user-defined distributions.
distributions.
</p> </p>
</subsection> </subsection>
</section> </section>