extendedKalmanFilter
Create extended Kalman filter object for online state estimation
Description
            extendedKalmanFilter creates an object for online state estimation
            of a discrete-time nonlinear system using the first-order discrete-time extended Kalman
            filter algorithm.
When you perform online state estimation, you first create the nonlinear state
            transition function f and measurement function h.
            You then construct the extendedKalmanFilter object using these
            nonlinear functions, and specify whether the noise terms are additive or nonadditive.
            You can also specify the Jacobians of the state transition and measurement functions by
            either generating them using automatic differentiation in the generateJacobianFcn
            function or by writing them yourself. If you do not specify them, the software
            numerically computes the Jacobians.
After you create the object, you use the predict command to predict state estimate at the next time step, and
                correct to correct state estimates using the algorithm and real-time
            data. For information about the algorithm, see Algorithms.
Creation
Syntax
Description
obj = extendedKalmanFilter(stateTransitionFcn,measurementFcn,initialState)
- stateTransitionFcnis a function that calculates the state of the system at time k, given the state vector at time k-1. This function is stored in the- StateTransitionFcnproperty of the object.
- measurementFcnis a function that calculates the output measurement of the system at time k, given the state at time k. This function is stored in the- MeasurementFcnproperty of the object.
- initialStatespecifies the initial value of the state estimates. This value is stored in the- Stateproperty of the object.
After creating the object, use the correct and predict functions to update state estimates and state
                        estimation error covariance values using a first-order discrete-time
                        extended Kalman filter algorithm and real-time data.
- predictupdates- obj.Stateand- obj.StateCovariancewith the predicted value at time step k using the state value at time step k–1.
- correctupdates- obj.Stateand- obj.StateCovariancewith the estimated values at time step k using measured data at time step k.
obj = extendedKalmanFilter(___,Name,Value)[1;0], to specify these values after creation, use
                            obj.State = [1;0].
Properties
Object Functions
| correct | Correct state and state estimation error covariance using extended or unscented Kalman filter, or particle filter and measurements | 
| predict | Predict state and state estimation error covariance at next time step using extended or unscented Kalman filter, or particle filter | 
| residual | Return measurement residual and residual covariance when using extended or unscented Kalman filter | 
| clone | Copy online state estimation object | 
| generateJacobianFcn | Generate MATLAB Jacobian functions for extended Kalman filter using automatic differentiation | 
Examples
Algorithms
The first-order, discrete-time extended Kalman filter algorithm performs online state estimation of a discrete-time nonlinear system.
Consider a plant with states x, input u, output y, process noise w, and measurement noise v. Assume that you can represent the plant as a nonlinear system.

The algorithm computes the state estimates of the nonlinear system using state transition and measurement functions specified by you. The software lets you specify the noise in these functions as additive or nonadditive:
- Additive Noise Terms — The state transition and measurements equations have the following form: - Here f is a nonlinear state transition function that describes the evolution of states - xfrom one time step to the next. The nonlinear measurement function h relates- xto the measurements- yat time step- k.- wand- vare the zero-mean, uncorrelated process and measurement noises, respectively. These functions can also have additional input arguments that are denoted by- usand- umin the equations. For example, the additional arguments could be time step- kor the inputs- uto the nonlinear system. There can be multiple such arguments.- Note that the noise terms in both equations are additive. That is, - x(k)is linearly related to the process noise- w(k-1), and- y(k)is linearly related to the measurement noise- v(k).
- Nonadditive Noise Terms — The software also supports more complex state transition and measurement functions where the state x[k] and measurement y[k] are nonlinear functions of the process noise and measurement noise, respectively. When the noise terms are nonadditive, the state transition and measurements equation have the following form: 
When you perform online state estimation, you first create the nonlinear state
            transition function f and measurement function h.
            You then construct the extendedKalmanFilter object using these
            nonlinear functions, and specify whether the noise terms are additive or nonadditive.
            You can also specify the Jacobians of the state transition and measurement functions by
            either generating them using automatic differentiation in the generateJacobianFcn
            function or by writing them yourself. If you do not specify them, the software
            numerically computes the Jacobians.
After you create the object, you use the predict command to predict state estimate at the next time step, and
                correct to correct state estimates using the algorithm and real-time
            data. For additional details about the algorithm, see Extended and Unscented Kalman Filter Algorithms for Online State Estimation.
Extended Capabilities
Version History
Introduced in R2016bSee Also
Functions
Blocks
Topics
- Nonlinear State Estimation Using Unscented Kalman Filter and Particle Filter
- Generate Code for Online State Estimation in MATLAB
- State Estimation with Wrapped Measurements Using Extended Kalman Filter
- What Is Online Estimation?
- Extended and Unscented Kalman Filter Algorithms for Online State Estimation
- Validate Online State Estimation at the Command Line
- Troubleshoot Online State Estimation