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