Nonlinear Curve Fitter Class
Definition
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public class NonlinearCurveFitter : CurveFitter
- Inheritance
- Object → CurveFitter → NonlinearCurveFitter
Remarks
Use the NonlinearCurveFitter class to fit data to a nonlinear curve by the method of least squares. The curve, which must be of a type that inherits from NonlinearCurve, is specified by the Curve property. The data is supplied as Vector objects through the XValues and YValues properties.
The Fit() method performs the actual curve fit. This method returns the NonlinearCurve that best fits the supplied data. The Optimizer property returns the MultidimensionalOptimizer object that was used to find the least squares solution. To verify that the algorithm terminated normally, you can inspect the Optimizer's Status property, which is of type AlgorithmStatus. A value of Normal indicates that the algorithm terminated normally. However, it is still possible that the algorithm didn't converge to the actual best fit. A visual inspection is always recommended.
The parameters of the fitted curve can be retrieved through the BestFitParameters property. The standard deviations associated with each parameter are available through the GetStandardDeviations() method.
By default, the observations are unweighted. You can supply a weighting method in two ways. You can set the WeightFunction property to a function of two variables delegate that computes the weight for each observation. The WeightFunctions class provides predefined delegates for the most common weight functions. Alternatively, you can set the individual weights by setting the WeightVector property to a Vector that contains the weight for each individual observation.
Constructors
Nonlinear | Constructs a new NonlinearCurveFitter object. |
Nonlinear | Constructs a new NonlinearCurveFitter object. |
Properties
Best |
Gets the curve parameters corresponding to the best fit.
(Inherited from CurveFitter) |
Curve |
Gets the non-linear curve that is being fitted.
(Overrides CurveFitter.Curve) |
Initial |
Gets or sets the initial value for the iteration.
(Inherited from CurveFitter) |
Lower | Gets or sets the vector of lower bounds of the curve parameters. |
Method | Gets or sets the nonlinear least squares algorithm that is to be used in the calculations. |
Optimizer | Gets the optimizer used to calculate the nonlinear least-squares solution. |
Residuals |
Gets the residuals for the observations.
(Inherited from CurveFitter) |
Scale |
Gets or sets the vector used to scale the curve parameters.
(Inherited from CurveFitter) |
Standard |
Gets the standard error of the curve fit.
(Inherited from CurveFitter) |
Upper | Gets or sets the vector of upper bounds of the curve parameters. |
Weight |
Gets or sets the weight function.
(Inherited from CurveFitter) |
Weight |
Gets or sets the weight vector.
(Inherited from CurveFitter) |
XValues |
Gets or sets the vector of x-values.
(Inherited from CurveFitter) |
YValues |
Gets or sets the vector of y-values.
(Inherited from CurveFitter) |
Methods
Compute |
Calculates the least-squares fit.
(Overrides CurveFitter.ComputeFit(DenseVector<Double>, SymmetricMatrix<Double>, Double)) |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
Fit |
Calculates the least-squares fit.
(Inherited from CurveFitter) |
Get |
Gets the width of the confidence band around the best-fit curve at the specified point at the 95% confidence level.
(Inherited from CurveFitter) |
Get |
Gets the width of the confidence band around the best-fit curve at the specified point.
(Overrides CurveFitter.GetConfidenceBandwidth(Double, Double)) |
Get | Serves as the default hash function. (Inherited from Object) |
Get |
Gets the width of the prediction band around the best-fit curve at the specified point at the 95% confidence level.
(Inherited from CurveFitter) |
Get |
Gets the width of the prediction band around the best-fit curve at the specified point.
(Overrides CurveFitter.GetPredictionBandwidth(Double, Double)) |
Get |
Gets the standard deviations.
(Inherited from CurveFitter) |
Get | Gets the Type of the current instance. (Inherited from Object) |
Get |
Returns the variance-covariance matrix of the fit.
(Inherited from CurveFitter) |
Memberwise | Creates a shallow copy of the current Object. (Inherited from Object) |
Scale( |
Scales the components of a vector using the values from ScaleVector.
(Inherited from CurveFitter) |
Scale( |
Scales the components of a vector using the values from ScaleVector.
(Inherited from CurveFitter) |
ToString | Returns a string that represents the current object. (Inherited from Object) |
Unscale( |
Undoes the scaling of the components of a vector using the values from ScaleVector.
(Inherited from CurveFitter) |
Unscale( |
Undoes the scaling of the components of a vector using the values from ScaleVector.
(Inherited from CurveFitter) |