Java org.apache.commons.math3.filter KalmanFilter fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.filter KalmanFilter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.filter KalmanFilter.

The text is from its open source code.

Constructor

KalmanFilter(final ProcessModel process, final MeasurementModel measurement)
Creates a new Kalman filter with the given process and measurement models.

Method

voidcorrect(final double[] z)
Correct the current state estimate with an actual measurement.
voidcorrect(final RealVector z)
Correct the current state estimate with an actual measurement.
intgetMeasurementDimension()
Returns the dimension of the measurement vector.
intgetStateDimension()
Returns the dimension of the state estimation vector.
double[]getStateEstimation()
Returns the current state estimation vector.
voidpredict()
Predict the internal state estimation one time step ahead.