Returns the cumulative distribution function evaluated at the given value.
Namespace:
CenterSpace.NMath.StatsAssembly: 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 successes.
Return Value
The probability of obtaining x or fewer successes.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown if the number of success is set to a negative value, or to a value greater than N. |