| 
            
              MultivariateMixtureTDistributionFunction Method (Int32, Double)
             | 
          
        
         
              Gets the cumulative distribution function (cdf) for one 
              of the component distributions evaluated at point x.
            
 
    Namespace: 
   Accord.Statistics.Distributions.Multivariate
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxpublic double DistributionFunction(
	int componentIndex,
	params double[] x
)
Public Function DistributionFunction ( 
	componentIndex As Integer,
	ParamArray x As Double()
) As Double
 Request Example
		View SourceParameters
- componentIndex
 - Type: SystemInt32
The component distribution's index. - x
 - Type: SystemDouble
A single point in the distribution range. 
Return Value
Type: 
Double
Remarks
              The Cumulative Distribution Function (CDF) describes the cumulative
              probability that a given value or any value smaller than it will occur.
            
See Also