Returns the cumulative density function evaluated at a given value.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public override double CDF(
	double x
)
Visual Basic (Declaration)
Public Overrides Function CDF ( _
	x As Double _
) As Double
Visual C++
public:
virtual double CDF(
	double x
) override

Parameters

x
Type: System..::.Double
A position on the x-axis.

Return Value

The cumulative density function evaluated at x.

Remarks

The value of the cumulative density function at a point x is probability that the value of a random variable having this Weibull density is less than or equal to x.

See Also