Uses of Interface
org.hipparchus.filtering.kalman.KalmanEstimate
-
Packages that use KalmanEstimate Package Description org.hipparchus.filtering.kalman Kalman filter.org.hipparchus.filtering.kalman.extended Kalman filter implementation for non-linear processes.org.hipparchus.filtering.kalman.linear Kalman filter implementation for linear processes.org.hipparchus.filtering.kalman.unscented Unscented Kalman filter implementation. -
-
Uses of KalmanEstimate in org.hipparchus.filtering.kalman
Subinterfaces of KalmanEstimate in org.hipparchus.filtering.kalman Modifier and Type Interface Description interface
KalmanFilter<T extends Measurement>
Interface representing a Kalman filter.Classes in org.hipparchus.filtering.kalman that implement KalmanEstimate Modifier and Type Class Description class
AbstractKalmanFilter<T extends Measurement>
Shared parts between linear and non-linear Kalman filters.Methods in org.hipparchus.filtering.kalman with parameters of type KalmanEstimate Modifier and Type Method Description default void
KalmanObserver. init(KalmanEstimate estimate)
Callback for initialisation of observer.void
KalmanSmoother. init(KalmanEstimate estimate)
void
KalmanObserver. updatePerformed(KalmanEstimate estimate)
Notification callback after each Kalman filter measurement update.void
KalmanSmoother. updatePerformed(KalmanEstimate estimate)
-
Uses of KalmanEstimate in org.hipparchus.filtering.kalman.extended
Classes in org.hipparchus.filtering.kalman.extended that implement KalmanEstimate Modifier and Type Class Description class
ExtendedKalmanFilter<T extends Measurement>
Kalman filter fornon-linear process
. -
Uses of KalmanEstimate in org.hipparchus.filtering.kalman.linear
Classes in org.hipparchus.filtering.kalman.linear that implement KalmanEstimate Modifier and Type Class Description class
LinearKalmanFilter<T extends Measurement>
Kalman filter forlinear process
. -
Uses of KalmanEstimate in org.hipparchus.filtering.kalman.unscented
Classes in org.hipparchus.filtering.kalman.unscented that implement KalmanEstimate Modifier and Type Class Description class
UnscentedKalmanFilter<T extends Measurement>
Unscented Kalman filter forunscented process
.
-