|
MixtureTEstimate Method (Double, Double, 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,
double threshold,
double[] coefficients,
params T[] components
)
Public Shared Function Estimate (
data As Double(),
threshold As Double,
coefficients As Double(),
ParamArray components As T()
) As Mixture(Of T)
Request Example
View SourceParameters
- data
- Type: SystemDouble
A set of observations. - threshold
- Type: SystemDouble
The convergence threshold for the Expectation-Maximization estimation. - coefficients
- Type: SystemDouble
The initial mixture coefficients. - components
- Type: T
The initial components of the mixture model.
Return Value
Type:
MixtureTReturns a new Mixture fitted to the given observations.
See Also