Click or drag to resize

QuickLinearArbitraryBaseRegression(ActionDouble, VectorDouble, NullableDouble) Constructor

Initializes a new instance of the QuickLinearArbitraryBaseRegression class. Here, some parameters can be fixed to given values (null means not fixed).

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public QuickLinearArbitraryBaseRegression(
	Action<double, Vector<double>> calculateBase,
	double?[] parametersFixed
)

Parameters

calculateBase  ActionDouble, VectorDouble
An action that calculates the base functions. First argument is the x value. The second argument is a vector that will receive the base function values.
parametersFixed  NullableDouble
Array of fixed parameters. For each element that has a value, the parameter is considered fixed, and will not participate in the regression evaluation. The length of this array is the number of base functions.
See Also