|
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>
<ExtensionAttribute>
Public Shared Function Fit(Of TDistribution As {New, Object, IFittable(Of Double)}) (
observations As Double(),
Optional weights As Double() = Nothing
) As TDistribution
Request Example
View SourceParameters
- 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:
TDistributionUsage 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