Click or drag to resize

DynamicParameterEstimationVariableX(Int32, Int32, Int32, IDynamicParameterEstimationSolver) Constructor

Initializes a new instance of the DynamicParameterEstimationVariableX class.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public DynamicParameterEstimationVariableX(
	int[] xcount,
	int[] ycount,
	int backgroundOrder,
	IDynamicParameterEstimationSolver solver
)

Parameters

xcount  Int32
Designates which x points are processed together as one unit. The array must have the length of _numX. For every x parameter, the element in the array designates how many points of the x history are added up and treated as one input element. If you set all elements to 1, the behavior should be the same as GetTransferFunction(Double, IVectorDouble).
ycount  Int32
Designates which y points are processed together as one unit. The array must have the length of _numY. For every y parameter, the element in the array designates how many points of the y history are added up and treated as one input element. If you set all elements to 1, the behavior should be the same as GetTransferFunction(Double, IVectorDouble).
backgroundOrder  Int32
Order of the background fitting.
solver  IDynamicParameterEstimationSolver
The solver to use with dynamic parameter estimation. Use the static getter methods SVDSolver or LUSolver to get a solver.
See Also