|  | BinomialDistributionCDF Method | 
            Returns the cumulative distribution function evaluated at the given value.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic override double CDF(
	double x
)
Public Overrides Function CDF ( 
	x As Double
) As Double
public:
virtual double CDF(
	double x
) override
abstract CDF : 
        x : float -> float 
override CDF : 
        x : float -> float Parameters
- x  Double
- The number of successes.
Return Value
Double
            The probability of obtaining 
x or fewer successes.
            
 Exceptions
Exceptions| Exception | Condition | 
|---|
| InvalidArgumentException | Thrown if the number of success is set to a negative value, or to a value 
            greater than N. | 
 See Also
See Also