public interface Distribution
| Modifier and Type | Method and Description |
|---|---|
java.lang.Double |
getCumulativeProbabilityAt(double x)
Returns the cumulative density function value at a given position.
|
java.lang.Double |
getDescendingCumulativeProbabilityAt(double x)
Returns the cumulative density function value at a given position when
starting from the high values.
|
java.lang.Double |
getMaxValueForProbability(double p)
The value after which the density function will be smaller than p.
|
java.lang.Double |
getMinValueForProbability(double p)
The value before which the density function will be smaller than p.
|
java.lang.Double |
getProbabilityAt(double x)
Returns the density function value at a given position.
|
java.lang.Double |
getValueAtCumulativeProbability(double p)
The value after which the cumulative density function will be smaller
than p.
|
java.lang.Double |
getValueAtDescendingCumulativeProbability(double p)
The value after which the cumulative density function will be smaller
than p when starting from high values.
|
java.lang.Double getProbabilityAt(double x)
x - the position of interestjava.lang.Double getCumulativeProbabilityAt(double x)
throws org.apache.commons.math.MathException
x - the position of interestorg.apache.commons.math.MathExceptionjava.lang.Double getDescendingCumulativeProbabilityAt(double x)
throws org.apache.commons.math.MathException
x - the position of interestorg.apache.commons.math.MathExceptionjava.lang.Double getMaxValueForProbability(double p)
p - the probability of interestjava.lang.Double getMinValueForProbability(double p)
p - the probability of interestjava.lang.Double getValueAtCumulativeProbability(double p)
throws org.apache.commons.math.MathException
p - the probability of interestorg.apache.commons.math.MathExceptionjava.lang.Double getValueAtDescendingCumulativeProbability(double p)
throws org.apache.commons.math.MathException
p - the probability of interestorg.apache.commons.math.MathExceptionCopyright © 2014. All Rights Reserved.