Returns the cumulative distribution 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 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
The number of failures before the first success.

Return Value

The probability that the number of failures before the first success is less than or equal to
CopyC#
x

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentExceptionThrown if x is less than zero.

See Also