|  | ChiSquareDistributionCDF Method | 
            Returns the cumulative density function evaluated at a 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
- A position on the x-axis.
Return Value
DoubleThe cumulative density function evaluated at 
x.
 Remarks
RemarksThe value of the cumulative density function at a point x is
            probability that the value of a random variable having this normal density is
            less than or equal to x.
            
 See Also
See Also