Click or drag to resize

LinearConstraintsCompiler(ParameterSet, IDictionaryString, Double) Constructor

Initializes a new instance of the LinearConstraintsCompiler class using the specified parameter set and optional constants.

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

Parameters

parameters  ParameterSet
The set of parameters that define the variables available for constraint compilation. Cannot be null.
constants  IDictionaryString, Double  (Optional)
An optional dictionary containing constant values to be used during constraint compilation. Keys represent constant names and values represent their corresponding numeric values. May be null.
Remarks
This constructor extracts parameter names from the provided parameter set and creates implicit constraints based on those parameters.
See Also