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.3448.0 (4.8.3448.0)
Syntaxpublic 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 (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].. y[i-numY]).
- backgroundOrder Int32
-
Order of the background fit, i.e. components 1, i, 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.
Exceptions
See Also