Student TDistribution.Distribution Function Method
Definition
Namespace: Extreme.Statistics.Distributions
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Distribution | Evaluates the cumulative distribution function (CDF) of this distribution for the specified value. |
Distribution | Evaluates the cumulative distribution function (CDF) of this distribution for the specified value. |
DistributionFunction(Double)
Evaluates the cumulative distribution function
(CDF) of this distribution for the specified value.
public override double DistributionFunction(
double x
)
Parameters
- x Double
- A real number.
Return Value
DoubleThe value of the cumulative distribution function at x.
Remarks
The cumulative distribution function (CDF) of a distribution gives the probability that a sample from the distribution will be less than or equal to the specified value.
DistributionFunction(Double, Int32)
Evaluates the cumulative distribution function
(CDF) of this distribution for the specified value.
public static double DistributionFunction(
double x,
int degreesOfFreedom
)
Parameters
- x Double
- A real number.
- degreesOfFreedom Int32
- The degrees of freedom of the distribution.
Return Value
DoubleThe value of the cumulative distribution function for the specified value.
Remarks
The cumulative distribution function (CDF) of a distribution gives the probability that a sample from the distribution will be less than or equal to the specified value.
Exceptions
ArgumentOutOfRangeException | degreesOfFreedom is less than or equal to zero. |