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
supports a handful, it may be necessary to extend the distribution
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/ContinuousDistribution.html">
ContinuousDistribution</a>,
<a href="../apidocs/org/apache/commons/math3/distribution/DiscreteDistribution.html">
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
<a href="../apidocs/org/apache/commons/math3/distribution/RealDistribution.html">RealDistribution</a>,
<a href="../apidocs/org/apache/commons/math3/distribution/IntegerDistribution.html">IntegerDistribution</a> and
<a href="../apidocs/org/apache/commons/math3/distribution/MultivariateRealDistribution.html">MultivariateRealDistribution</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
for implementation purposes will ensure any extension is compatible with the
remainder of Commons-Math. To aid in implementing a distribution extension,
the <a href="../apidocs/org/apache/commons/math3/distribution/AbstractDistribution.html">
AbstractDistribution</a>, <a href="../apidocs/org/apache/commons/math3/distribution/AbstractContinuousDistribution.html">
AbstractContinuousDistribution</a>, and <a href="../apidocs/org/apache/commons/math3/distribution/AbstractIntegerDistribution.html">
AbstractIntegerDistribution</a> provide implementation building blocks and
offer basic distribution functionality. By extending these abstract classes
directly, much of the repetitive distribution implementation is already
developed and should save time and effort in developing user-defined
distributions.
the <a href="../apidocs/org/apache/commons/math3/distribution/AbstractRealDistribution.html">AbstractRealDistribution</a>,
<a href="../apidocs/org/apache/commons/math3/distribution/AbstractIntegerDistribution.html">AbstractIntegerDistribution</a> and
<a href="../apidocs/org/apache/commons/math3/distribution/AbstractMultivariateRealDistribution.html">AbstractMultivariateRealDistribution</a>
provide implementation building blocks and offer basic distribution functionality.
By extending these abstract classes directly, much of the repetitive distribution
implementation is already developed and should save time and effort in developing
user-defined distributions.
</p>
</subsection>
</section>