| 
            
              MultivariateSmoothingRule Delegate
             | 
          
        
          
    Namespace: 
   Accord.Statistics.Distributions.Fitting
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxpublic delegate double[,] MultivariateSmoothingRule(
	double[][] observations,
	double[] weights = null,
	int[] repeats = null
)
Public Delegate Function MultivariateSmoothingRule ( 
	observations As Double()(),
	Optional weights As Double() = Nothing,
	Optional repeats As Integer() = Nothing
) As Double(,)
Parameters
- observations
 - Type: SystemDouble
The observations for the empirical distribution. - weights (Optional)
 - Type: SystemDouble
The fractional importance for each sample. Those values must sum up to one. - repeats (Optional)
 - Type: SystemInt32
The number of times each sample should be repeated. 
Return Value
Type: 
DoubleAn estimative of the smoothing parameter.
See Also