Represents the interface to a fitting function.
Instance member | Description |
|
Occurs when the fit function changed, including number or name of parameters, independent variables, dependent variables, or the scaling.
|
Full Usage:
this.DefaultParameterValue
Parameters:
int
-
Index of the parameter.
Returns: float
A default value for the parameter i .
Modifiers: abstract |
Returns a default parameter value. You must ensure that the fit function would generate values with those default parameters.
|
Full Usage:
this.DefaultVarianceScaling
Parameters:
int
-
Index of the dependent variable.
Returns: IVarianceScaling
The variance scaling for that dependent variable. If null is returned, then the
default variance scaling (weight==const.==1) is assumed.
Modifiers: abstract |
Returns the default variance scaling for the dependent variable
|
Full Usage:
this.DependentVariableName
Parameters:
int
-
Index of the dependent variable.
Returns: string
The name of the ith dependent variable.
Modifiers: abstract |
Returns the ith dependent variable name.
|
Full Usage:
this.Evaluate
Parameters:
float[]
-
The independent variables.
parameters : float[]
-
Parameters for evaluation.
FV : float[]
-
On return, this array contains the one (or more) evaluated
function values at the point (independent).
Modifiers: abstract |
This evaluates a function value.
|
Full Usage:
this.IndependentVariableName
Parameters:
int
-
Index of the independent variable.
Returns: string
The name of the ith independent variable.
Modifiers: abstract |
Returns the ith independent variable name.
|
Full Usage:
this.NumberOfDependentVariables
Returns: int
Modifiers: abstract |
Number of dependent variables (i.e. y, in Altaxo this is commonly called v (like value)).
|
Full Usage:
this.NumberOfIndependentVariables
Returns: int
Modifiers: abstract |
Number of independent variables (i.e. x).
|
Full Usage:
this.NumberOfParameters
Returns: int
Modifiers: abstract |
Number of parameters of this fit function.
|
Full Usage:
this.ParameterName
Parameters:
int
-
Index of the parameter.
Returns: string
The name of the ith paramter.
Modifiers: abstract |
Returns the ith parameter name.
|