Dynamic |
The DynamicParameterEstimationVariableX type exposes the following members.
| Name | Description | |
|---|---|---|
| _backgroundOrderPlus1 | Number of background parameters to estimate. (Inherited from DynamicParameterEstimation) | |
| _inputMatrix | Holds the input matrix. (Inherited from DynamicParameterEstimation) | |
| _numberOfParameter | Total number of parameters, i.e. _numX + _numY + _backgroundOrderPlus1. (Inherited from DynamicParameterEstimation) | |
| _numX | Number of x parameters to estimate. (Inherited from DynamicParameterEstimation) | |
| _numY | Number of y parameters to estimate. (Inherited from DynamicParameterEstimation) | |
| _offsetX |
"Moves" the sequence x in relation to sequence y.
Normally, y[i] is considered in dependence on x[i], x[i-1], and so on.
By setting the offset, y[i] is considered in dependence on x[i-offset], x[i-offset-1], etc.
(Inherited from DynamicParameterEstimation) | |
| _parameter |
Array to store the estimated parameters.
First in the array, the x parameters are stored (indices 0.._numX-1).
Then the y parameters (indices _numX.._numX+_numY-1).
Lastly, the background parameters are stored in the array (indices _numX+_numY..end).
(Inherited from DynamicParameterEstimation) | |
| _scaledY |
Array of y-values necessary for back-substitution. This is a copy of the input y vector
only for the elements _startingPoint..end.
(Inherited from DynamicParameterEstimation) | |
| _solver |
Stores an instance of a solver used to solve the linear equation.
The solver should keep and recycle the memory necessary for solving the equation.
(Inherited from DynamicParameterEstimation) | |
| _startingPoint | Index of the point where the calculation can start. (Inherited from DynamicParameterEstimation) |