SimpleNonlinearFit Constructor |
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.
Namespace: Altaxo.Calc.Regression.NonlinearAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public SimpleNonlinearFit(
FitEvaluationFunction fitFunc,
double[] parameter,
DataTable dataTable,
int groupNumber,
INumericColumn xCol,
INumericColumn yCol,
int start,
int count
)
Parameters
- fitFunc FitEvaluationFunction
- Fitting function.
- parameter Double
- Array of default parameters (length must match the expected number of parameter of fitFunc).
- dataTable DataTable
- The data table from which the provided xCol and yCol originate.
- groupNumber Int32
- The group number of the columns xCol and yCol.
- xCol INumericColumn
- Data column of independent values.
- yCol INumericColumn
- Data column of dependent values.
- start Int32
- First point to be used for fitting.
- count Int32
- Number of points to be used for fitting.
See Also