Click or drag to resize
Accord.NET (logo)

ToolsFitNewTDistribution, TObservations Method (TDistribution, TObservations, 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 FitNew<TDistribution, TObservations>(
	this TDistribution distribution,
	TObservations[] observations,
	double[] weights = null
)
where TDistribution : Object, IFittable<TObservations>, ICloneable
Request Example View Source

Parameters

distribution
Type: TDistribution
The distribution whose parameters should be fitted to the samples.
observations
Type: TObservations
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
TObservations

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