Click or drag to resize

SimpleNonlinearFit Class

Class for simple non linear fitting that can be used inside of scripts.
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.Regression.NonlinearSimpleNonlinearFit

Namespace: Altaxo.Calc.Regression.Nonlinear
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public class SimpleNonlinearFit

The SimpleNonlinearFit type exposes the following members.

Constructors
 NameDescription
Public methodSimpleNonlinearFit Creates an instance of this class. This constructor needs either dataTable, xCol and yCol to be valid, or all to be null. If all null, consider to use the other provided constructor.
Top
Properties
 NameDescription
Public propertyResultingChiSquare After a fit, returns the resulting Chi Square.
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 Executes the fit. Afterwards, you can get the fit parameters by GetParameter(Int32), or the resulting Chi².
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetParameter Gets the parameter with index i.
Public methodGetParameterIsFixed Gets the fixed/unfixed state of the parameter with index i.
Public methodGetParameterVariance Gets the variance of parameter with index i.
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodResetToDefaultParameters Sets the values of the parameter back to their default value.
Public methodSetDependentVariable With these function is is possible to change the data column used for the dependent variable.
Public methodSetIndependentVariable With these function is is possible to change the data column used for the independent variable.
Public methodSetParameter Sets the parameter with index i to a certain value, that is used as starting value for fitting.
Public methodSetParameterIsFixed Sets the parameter with index i to either fixed (parameter can't vary during fit) or unfixed.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
See Also