DynamicParameterEstimationVariableX(Int32, Int32, Int32, IDynamicParameterEstimationSolver) Constructor |
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic DynamicParameterEstimationVariableX(
int[] xcount,
int numY,
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).
- numY Int32
- Number of y points used for the history.
- 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