Click or drag to resize

QuickNonlinearRegressionWrappedParametersFit(IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListBoolean, CancellationToken) Method

Non-linear least square fitting by the Levenberg-Marquardt algorithm.

Namespace: Altaxo.Calc.Regression.Nonlinear
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public NonlinearMinimizationResult Fit(
	IReadOnlyList<double> xValues,
	IReadOnlyList<double> yValues,
	IReadOnlyList<double> initialGuess,
	IReadOnlyList<bool> isFixed,
	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.
isFixed  IReadOnlyListBoolean
Array of booleans indicating which parameters are fixed. Must have the same length as the parameter array.
cancellationToken  CancellationToken
Token to cancel the evaluation.

Return Value

NonlinearMinimizationResult
The result of the Levenberg-Marquardt minimization.
See Also