Returns the cumulative density function evaluated at the given value.

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

Syntax

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

Parameters

z
Type: System..::.Double
The value at which to evaluate the cumulative density function.

Return Value

The cumulative density function evaluated at z.

Remarks

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

See Also