Click or drag to resize

LinearConstraintsCompiler(IFitFunction, IDictionaryString, Double, Boolean) Constructor

Initializes a new instance of the LinearConstraintsCompiler class from a fit function.

Namespace: Altaxo.Calc.Regression.Nonlinear
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3618.0 (4.8.3618.0)
Syntax
C#
public LinearConstraintsCompiler(
	IFitFunction fitFunction,
	IDictionary<string, double>? constants = null,
	bool includeSoftParameterBoundaries = false
)

Parameters

fitFunction  IFitFunction
The fit function that provides parameter names and parameter bounds.
constants  IDictionaryString, Double  (Optional)
Optional named constants (e.g. {"maxVal", 5.0}). A name may not appear in both the fit-function parameter names and constants.
includeSoftParameterBoundaries  Boolean  (Optional)
If , soft parameter boundaries are combined with the hard parameter boundaries.
See Also