Evaluates the cumulative distribution function
(CDF) of this distribution for the specified value.
Namespace:
Extreme.Statistics.Distributions
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public abstract double DistributionFunction(
double x
)
Public MustOverride Function DistributionFunction (
x As Double
) As Double
public:
virtual double DistributionFunction(
double x
) abstract
abstract DistributionFunction :
x : float -> float
Parameters
- x
- Type: SystemDouble
A real number.
Return Value
Type:
DoubleThe value of the cumulative distribution function
for the specified value.
The distribution function of a distribution,
often also called the cumulative distribution function (CDF),
gives the probability that a sample
from the distribution will be less than or equal to
the specified value.
The distribution function is the integral from -infinity to x
of the .
It is the complement of the SurvivorDistributionFunction(Double).
Reference