Click or drag to resize
Accord.NET (logo)

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
)
Request Example View Source

Parameters

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: MixtureT
Returns a new Mixture fitted to the given observations.
See Also