DynamicParameterEstimation(Int32, Int32, Int32) Constructor |
Constructur for the dynamic parameter estimation.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public DynamicParameterEstimation(
int numX,
int numY,
int backgroundOrder
)
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]..x[i-numY].
- backgroundOrder Int32
- Order of the background fit, i.e. components 1, i, i² are fitted additionally to x and y. A order of 0 fits a constant
background, 1 a linear depencence, and so on. Set this parameter to -1 if you don't need a background fit.
See Also