|   | MultivariateMixtureTProbabilityDensityFunction Method (Int32, Double) | 
        
         
              Gets the probability density function (pdf) 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
 Syntax
Syntaxpublic double ProbabilityDensityFunction(
	int componentIndex,
	params double[] x
)
Public Function ProbabilityDensityFunction ( 
	componentIndex As Integer,
	ParamArray x As Double()
) As Double
Parameters
- componentIndex
- Type: SystemInt32
 The index of the desired component distribution.
- x
- Type: SystemDouble
 A single point in the distribution range.
Return Value
Type: 
Double
              The probability of 
x occurring
              in the current distribution.
            
 Remarks
Remarks
              The Probability Density Function (PDF) describes the
              probability that a given value x will occur.
            
 See Also
See Also