DynamicParameterEstimation(IReadOnlyListDouble, IReadOnlyListDouble, Int32, Int32, Int32) Constructor |
Calculates the dynamic parameter estimation in the constructor.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public DynamicParameterEstimation(
IReadOnlyList<double>? x,
IReadOnlyList<double> y,
int numX,
int numY,
int backgroundOrder
)
Parameters
- x IReadOnlyListDouble
- Vector of x values ("input values"). This parameter can be null (in this case only y values are taken into account).
- y IReadOnlyListDouble
- Vector of y values ("response values").
- 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