Click or drag to resize

QuickNonlinearRegressionOld Class

Note: This API is now obsolete.

Legacy implementation of a quick nonlinear regression for one dependent variable in dependence on one independent variable.
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.Regression.NonlinearQuickNonlinearRegressionOld

Namespace: Altaxo.Calc.Regression.Nonlinear
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
[ObsoleteAttribute("Please use QuickNonlinearRegression instead.")]
public class QuickNonlinearRegressionOld

The QuickNonlinearRegressionOld type exposes the following members.

Constructors
 NameDescription
Public methodQuickNonlinearRegressionOld Initializes a new instance of the QuickNonlinearRegressionOld class.
Top
Properties
 NameDescription
Public propertyCovariances Gets the resulting covariances of the fit.
Public propertyParameters Gets the fitted parameters.
Public propertyParameterVariances Gets the variances of the fitted parameters.
Public propertySigmaSquare Gets the estimated sigma squared of the last fit.
Public propertySumChiSquare Gets the sum of squared residuals (Chi²) of the last fit.
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodFit(Double, Double, Double, CancellationToken) Performs nonlinear least-squares fitting.
Public methodFit(Double, Double, Double, Boolean, CancellationToken) Performs nonlinear least-squares fitting.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Fields
 NameDescription
Protected field_covariances The covariances of the free parameters as computed by the last fit.
Protected field_fitFunction The fit function used for regression.
Protected field_isExecuted Indicates whether the fit has been executed and results are available.
Protected field_parameters The fitted parameters (full parameter vector, including fixed parameters).
Protected field_parameterVariances The variances of the fitted parameters (full parameter vector, including fixed parameters).
Protected field_sigmaSquare The estimated sigma squared computed by the last fit.
Protected field_sumChiSquare The sum of squared residuals (Chi²) computed by the last fit.
Top
Remarks
This type is kept for compatibility. Use QuickNonlinearRegression instead.
See Also