Click or drag to resize

DynamicParameterEstimation(Int32, Int32, Int32, IDynamicParameterEstimationSolver) Constructor

Constructor for the dynamic parameter estimation.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public DynamicParameterEstimation(
	int numX,
	int numY,
	int backgroundOrder,
	IDynamicParameterEstimationSolver solver
)

Parameters

numX  Int32
Number of history x samples to be taken into account for the parameter estimation (samples x[i], x[i-1].. x[i+1-numX]).
numY  Int32
Number of history y samples to be taken into account for the parameter estimation (samples y[i-1], y[i-2].. y[i-numY]).
backgroundOrder  Int32
Order of the background fit, i.e. components 1, i, are fitted additionally to x and y. An order of 0 fits a constant background, 1 a linear dependence, and so on. Set this parameter to -1 if you don't need a background fit.
solver  IDynamicParameterEstimationSolver
The solver to use with dynamic parameter estimation. Use the static getter methods SVDSolver or LUSolver to get a solver.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown if solver is .
See Also