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 |
getSmallestCumulativeProbabilityAt(double x)
Returns the cumulative density function value at a given position, starting from the low values if before the median, from the high otherwise.
|
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)
x
- the position of interestdouble getDescendingCumulativeProbabilityAt(double x)
x
- the position of interestdouble getSmallestCumulativeProbabilityAt(double x)
x
- the position of interestdouble getMaxValueForProbability(double p)
p
- the probability of interestdouble getMinValueForProbability(double p)
p
- the probability of interestdouble getValueAtCumulativeProbability(double p)
p
- the probability of interestdouble getValueAtDescendingCumulativeProbability(double p)
p
- the probability of interestCopyright © 2021. All rights reserved.