|
MultivariateMixtureTEstimate Method (Double, T)
|
Estimates a new mixture model from a given set of observations.
Namespace:
Accord.Statistics.Distributions.Multivariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public static MultivariateMixture<T> Estimate(
double[][] data,
params T[] components
)
Public Shared Function Estimate (
data As Double()(),
ParamArray components As T()
) As MultivariateMixture(Of T)
Request Example
View SourceParameters
- data
- Type: SystemDouble
A set of observations. - components
- Type: T
The initial components of the mixture model.
Return Value
Type:
MultivariateMixtureTReturns a new Mixture fitted to the given observations.
See Also