|  | NoncentralTDistributionCDF Method | 
            Returns the cumulative density function evaluated at the given value. 
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic override double CDF(
	double z
)
Public Overrides Function CDF ( 
	z As Double
) As Double
public:
virtual double CDF(
	double z
) override
abstract CDF : 
        z : float -> float 
override CDF : 
        z : float -> float Parameters
- z  Double
- The value at which to evaluate the cumulative density function.  
Return Value
DoubleThe cumulative density function evaluated at 
z. An input value of 
Double.NegativeInfinity returns 
            a 0.0, and an input of 
Double.PositiveInfinity returns a 1.0. For z less than 
float.MinValue, 0.0 is returned, and 
            greater than 
float.MaxValue 1.0 is returned.
 Remarks
RemarksThe value of the cumulative density function at a point z is
            probability that the value of a random variable having this normal density is
            less than or equal to z.
            
 See Also
See Also