Click or drag to resize
Accord.NET (logo)

JointDistribution. Fit Method (Double[] [] ,Double[] , IFittingOptions)

Fits the underlying distribution to a given set of observations.

Namespace:  Accord.Statistics.Distributions.Multivariate
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public override void Fit(
	double[][] observations,
	double[] weights,
	IFittingOptions options
)
Request Example View Source

Parameters

observations
Type:System.Double[][]
The array of observations to fit the model against. The array elements can be either of type double (for univariate data) or type double[] (for multivariate data).
weights
Type:System.Double[]
The weight vector containing the weight for each of the samples.
options
Type: Accord.Statistics.Distributions.Fitting.IFittingOptions
Optional arguments which may be used during fitting, such as regularization constants and additional parameters.
See Also