Click or drag to resize
Accord.NET (logo)

ToolsFitTDistribution Method (Double, Double)

Creates a new distribution that has been fit to a given set of observations.

Namespace:  Accord.Statistics
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public static TDistribution Fit<TDistribution>(
	this double[][] observations,
	double[] weights = null
)
where TDistribution : new(), Object, IFittable<double[]>
Request Example View Source

Parameters

observations
Type: SystemDouble
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 (Optional)
Type: SystemDouble
The weight vector containing the weight for each of the samples.

Type Parameters

TDistribution

Return Value

Type: TDistribution

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also