T - the type of the measurementsKalmanFilter<T>public class LinearKalmanFilter<T extends Measurement> extends AbstractKalmanFilter<T>
linear process.| Constructor | Description |
|---|---|
LinearKalmanFilter(MatrixDecomposer decomposer,
LinearProcess<T> process,
ProcessEstimate initialState) |
Simple constructor.
|
| Modifier and Type | Method | Description |
|---|---|---|
ProcessEstimate |
estimationStep(T measurement) |
Perform one estimation step.
|
computeInnovationCovarianceMatrix, correct, getCorrected, getPredicted, predictpublic LinearKalmanFilter(MatrixDecomposer decomposer, LinearProcess<T> process, ProcessEstimate initialState)
decomposer - decomposer to use for the correction phaseprocess - linear process to estimateinitialState - initial statepublic ProcessEstimate estimationStep(T measurement) throws MathRuntimeException
measurement - single measurement to handleMathRuntimeException - if estimation failsCopyright © 2016–2018 Hipparchus.org. All rights reserved.