Returns the sample value at the specified percentile.
Namespace:
Extreme.Statistics.Distributions
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public override double InverseDistributionFunction(
double probability
)
Public Overrides Function InverseDistributionFunction (
probability As Double
) As Double
public:
virtual double InverseDistributionFunction(
double probability
) override
abstract InverseDistributionFunction :
probability : float -> float
override InverseDistributionFunction :
probability : float -> float
Parameters
- probability
- Type: SystemDouble
A real number between 0 and 1.
Return Value
Type:
DoubleThe sample value at the specified percentile.
The percentile of a probability,
probability, is the sample value x for
which the probability of obtaining a sample less than
or equal to x is probability.
The InverseDistributionFunction(Double) function is the inverse
of the Cumulative
Distribution Function.
Reference