Computes the cumulative distribution function at a given point.

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

Syntax

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

Parameters

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

Return Value

The cumulative distribution function evaluated at x.

See Also