QuickNonlinearRegressionWrappedParametersFit(IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListDouble, CancellationToken) Method |
Non-linear least square fitting by the Levenberg-Marquardt algorithm.
Namespace: Altaxo.Calc.Regression.NonlinearAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public NonlinearMinimizationResult Fit(
IReadOnlyList<double> xValues,
IReadOnlyList<double> yValues,
IReadOnlyList<double> initialGuess,
CancellationToken cancellationToken
)
Parameters
- xValues IReadOnlyListDouble
- The x-values of the model to fit.
- yValues IReadOnlyListDouble
- The y-values of the model to fit.
- initialGuess IReadOnlyListDouble
- The initially guessed parameter values.
- cancellationToken CancellationToken
- Token to cancel the evaluation
Return Value
NonlinearMinimizationResultThe result of the Levenberg-Marquardt minimization
See Also