|
MixtureTEstimate Method (Double, T)
|
Estimates a new mixture model from a given set of observations.
Namespace:
Accord.Statistics.Distributions.Univariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public static Mixture<T> Estimate(
double[] data,
params T[] components
)
Public Shared Function Estimate (
data As Double(),
ParamArray components As T()
) As Mixture(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:
MixtureTReturns a new Mixture fitted to the given observations.
See Also