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 trials.

Return Value

The probability of obtaining this.N successes in x or fewer trials.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentException Thrown if the number of trials is set to a negative value.

See Also