AbstractCovarianceMatrixProvider, ConstantProcessNoise, UnivariateProcessNoisepublic interface CovarianceMatrixProvider
| Modifier and Type | Method | Description |
|---|---|---|
org.hipparchus.linear.RealMatrix |
getInitialCovarianceMatrix(SpacecraftState initial) |
Get the initial covariance matrix.
|
org.hipparchus.linear.RealMatrix |
getProcessNoiseMatrix(SpacecraftState previous,
SpacecraftState current) |
Get the process noise matrix between previous and current states.
|
org.hipparchus.linear.RealMatrix getInitialCovarianceMatrix(SpacecraftState initial)
The initial covariance matrix is a covariance matrix corresponding to the
parameters managed by the Kalman estimator.
The number of rows/columns and their order are as follows:
In most cases, the initial covariance matrix will be the output matrix of a previous run of the Kalman filter.
initial - initial state statePropagatorBuilder.getOrbitalParametersDrivers(),
PropagatorBuilder.getPropagationParametersDrivers()org.hipparchus.linear.RealMatrix getProcessNoiseMatrix(SpacecraftState previous, SpacecraftState current)
The process noise matrix is a covariance matrix corresponding to the
parameters managed by the Kalman estimator.
The number of rows/columns and their order are as follows:
In most cases, the process noise for the part corresponding to measurements (the final rows and columns) will be set to 0 for the process noise corresponding to the evolution between a non-null previous and current state.
previous - previous statecurrent - current statePropagatorBuilder.getOrbitalParametersDrivers(),
PropagatorBuilder.getPropagationParametersDrivers()Copyright © 2002-2019 CS Systèmes d'information. All rights reserved.