MaxwellDistribution.DistributionFunction Method
Evaluates the cumulative distribution function
(CDF) of this distribution for the specified value.
DefinitionPermalink
Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.5
C#
The value of the cumulative distribution function for the specified value.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.5
public override double DistributionFunction(
double x
)
ParametersPermalink
- x Double
- A real number.
Return ValuePermalink
DoubleThe value of the cumulative distribution function for the specified value.
RemarksPermalink
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).