Click or drag to resize

FitFunctionDDWrapper Constructor

Initializes a new instance of the FitFunctionDDWrapper class.

Namespace: Altaxo.Calc.FitFunctions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public FitFunctionDDWrapper(
	IFitFunction fitFunction,
	IReadOnlyList<double> parameters
)

Parameters

fitFunction  IFitFunction
The fit function.
parameters  IReadOnlyListDouble
The parameters.
Exceptions
ExceptionCondition
ArgumentExceptionThrown if the fit function is not immutable, does not have exactly one independent variable or one dependent variable, or if the number of provided parameters does not match the function's expected number.
ArgumentNullExceptionThrown if fitFunction or parameters is null.
See Also