fbpx
Wikipedia

Kalman filter

For statistics and control theory, Kalman filtering, also known as linear quadratic estimation (LQE), is an algorithm that uses a series of measurements observed over time, including statistical noise and other inaccuracies, and produces estimates of unknown variables that tend to be more accurate than those based on a single measurement alone, by estimating a joint probability distribution over the variables for each timeframe. The filter is named after Rudolf E. Kálmán, who was one of the primary developers of its theory.

The Kalman filter keeps track of the estimated state of the system and the variance or uncertainty of the estimate. The estimate is updated using a state transition model and measurements. denotes the estimate of the system's state at time step k before the k-th measurement yk has been taken into account; is the corresponding uncertainty.

This digital filter is sometimes termed the Stratonovich–Kalman–Bucy filter because it is a special case of a more general, nonlinear filter developed somewhat earlier by the Soviet mathematician Ruslan Stratonovich.[1][2][3][4] In fact, some of the special case linear filter's equations appeared in papers by Stratonovich that were published before summer 1961, when Kalman met with Stratonovich during a conference in Moscow.[5]

Kalman filtering[6] has numerous technological applications. A common application is for guidance, navigation, and control of vehicles, particularly aircraft, spacecraft and ships positioned dynamically.[7] Furthermore, Kalman filtering is a concept much applied in time series analysis used for topics such as signal processing and econometrics. Kalman filtering is also one of the main topics of robotic motion planning and control[8][9] and can be used for trajectory optimization.[10] Kalman filtering also works for modeling the central nervous system's control of movement. Due to the time delay between issuing motor commands and receiving sensory feedback, the use of Kalman filters[11] provides a realistic model for making estimates of the current state of a motor system and issuing updated commands.[12]

The algorithm works by a two-phase process having a prediction phase and an update phase. For the prediction phase, the Kalman filter produces estimates of the current state variables, along with their uncertainties. Once the outcome of the next measurement (necessarily corrupted with some error, including random noise) is observed, these estimates are updated using a weighted average, with more weight being given to estimates with greater certainty. The algorithm is recursive. It can operate in real time, using only the present input measurements and the state calculated previously and its uncertainty matrix; no additional past information is required.

Optimality of Kalman filtering assumes that errors have a normal (Gaussian) distribution. In the words of Rudolf E. Kálmán: "In summary, the following assumptions are made about random processes: Physical random phenomena may be thought of as due to primary random sources exciting dynamic systems. The primary sources are assumed to be independent gaussian random processes with zero mean; the dynamic systems will be linear."[13] Though regardless of Gaussianity, if the process and measurement covariances are known, the Kalman filter is the best possible linear estimator in the minimum mean-square-error sense. [14] It is a common misconception (perpetuated in the literature) that the Kalman filter cannot be rigorously applied unless all noise processes are assumed to be Gaussian.[15]

Extensions and generalizations of the method have also been developed, such as the extended Kalman filter and the unscented Kalman filter which work on nonlinear systems. The basis is a hidden Markov model such that the state space of the latent variables is continuous and all latent and observed variables have Gaussian distributions. Kalman filtering has been used successfully in multi-sensor fusion,[16] and distributed sensor networks to develop distributed or consensus Kalman filtering.[17]

History edit

The filtering method is named for Hungarian émigré Rudolf E. Kálmán, although Thorvald Nicolai Thiele[18][19] and Peter Swerling developed a similar algorithm earlier. Richard S. Bucy of the Johns Hopkins Applied Physics Laboratory contributed to the theory, causing it to be known sometimes as Kalman–Bucy filtering. Kalman was inspired to derive the Kalman filter by applying state variables to the Wiener filtering problem.[20]Stanley F. Schmidt is generally credited with developing the first implementation of a Kalman filter. He realized that the filter could be divided into two distinct parts, with one part for time periods between sensor outputs and another part for incorporating measurements.[21] It was during a visit by Kálmán to the NASA Ames Research Center that Schmidt saw the applicability of Kálmán's ideas to the nonlinear problem of trajectory estimation for the Apollo program resulting in its incorporation in the Apollo navigation computer.[22]: 16 

This Kalman filtering was first described and developed partially in technical papers by Swerling (1958), Kalman (1960) and Kalman and Bucy (1961).

The Apollo computer used 2k of magnetic core RAM and 36k wire rope [...]. The CPU was built from ICs [...]. Clock speed was under 100 kHz [...]. The fact that the MIT engineers were able to pack such good software (one of the very first applications of the Kalman filter) into such a tiny computer is truly remarkable.

— Interview with Jack Crenshaw, by Matthew Reed, TRS-80.org (2009) [1]

Kalman filters have been vital in the implementation of the navigation systems of U.S. Navy nuclear ballistic missile submarines, and in the guidance and navigation systems of cruise missiles such as the U.S. Navy's Tomahawk missile and the U.S. Air Force's Air Launched Cruise Missile. They are also used in the guidance and navigation systems of reusable launch vehicles and the attitude control and navigation systems of spacecraft which dock at the International Space Station.[23]

Overview of the calculation edit

Kalman filtering uses a system's dynamic model (e.g., physical laws of motion), known control inputs to that system, and multiple sequential measurements (such as from sensors) to form an estimate of the system's varying quantities (its state) that is better than the estimate obtained by using only one measurement alone. As such, it is a common sensor fusion and data fusion algorithm.

Noisy sensor data, approximations in the equations that describe the system evolution, and external factors that are not accounted for, all limit how well it is possible to determine the system's state. The Kalman filter deals effectively with the uncertainty due to noisy sensor data and, to some extent, with random external factors. The Kalman filter produces an estimate of the state of the system as an average of the system's predicted state and of the new measurement using a weighted average. The purpose of the weights is that values with better (i.e., smaller) estimated uncertainty are "trusted" more. The weights are calculated from the covariance, a measure of the estimated uncertainty of the prediction of the system's state. The result of the weighted average is a new state estimate that lies between the predicted and measured state, and has a better estimated uncertainty than either alone. This process is repeated at every time step, with the new estimate and its covariance informing the prediction used in the following iteration. This means that Kalman filter works recursively and requires only the last "best guess", rather than the entire history, of a system's state to calculate a new state.

The measurements' certainty-grading and current-state estimate are important considerations. It is common to discuss the filter's response in terms of the Kalman filter's gain. The Kalman gain is the weight given to the measurements and current-state estimate, and can be "tuned" to achieve a particular performance. With a high gain, the filter places more weight on the most recent measurements, and thus conforms to them more responsively. With a low gain, the filter conforms to the model predictions more closely. At the extremes, a high gain (close to one) will result in a more jumpy estimated trajectory, while a low gain (close to zero) will smooth out noise but decrease the responsiveness.

When performing the actual calculations for the filter (as discussed below), the state estimate and covariances are coded into matrices because of the multiple dimensions involved in a single set of calculations. This allows for a representation of linear relationships between different state variables (such as position, velocity, and acceleration) in any of the transition models or covariances.

Example application edit

As an example application, consider the problem of determining the precise location of a truck. The truck can be equipped with a GPS unit that provides an estimate of the position within a few meters. The GPS estimate is likely to be noisy; readings 'jump around' rapidly, though remaining within a few meters of the real position. In addition, since the truck is expected to follow the laws of physics, its position can also be estimated by integrating its velocity over time, determined by keeping track of wheel revolutions and the angle of the steering wheel. This is a technique known as dead reckoning. Typically, the dead reckoning will provide a very smooth estimate of the truck's position, but it will drift over time as small errors accumulate.

For this example, the Kalman filter can be thought of as operating in two distinct phases: predict and update. In the prediction phase, the truck's old position will be modified according to the physical laws of motion (the dynamic or "state transition" model). Not only will a new position estimate be calculated, but also a new covariance will be calculated as well. Perhaps the covariance is proportional to the speed of the truck because we are more uncertain about the accuracy of the dead reckoning position estimate at high speeds but very certain about the position estimate at low speeds. Next, in the update phase, a measurement of the truck's position is taken from the GPS unit. Along with this measurement comes some amount of uncertainty, and its covariance relative to that of the prediction from the previous phase determines how much the new measurement will affect the updated prediction. Ideally, as the dead reckoning estimates tend to drift away from the real position, the GPS measurement should pull the position estimate back toward the real position but not disturb it to the point of becoming noisy and rapidly jumping.

Technical description and context edit

The Kalman filter is an efficient recursive filter estimating the internal state of a linear dynamic system from a series of noisy measurements. It is used in a wide range of engineering and econometric applications from radar and computer vision to estimation of structural macroeconomic models,[24][25] and is an important topic in control theory and control systems engineering. Together with the linear-quadratic regulator (LQR), the Kalman filter solves the linear–quadratic–Gaussian control problem (LQG). The Kalman filter, the linear-quadratic regulator, and the linear–quadratic–Gaussian controller are solutions to what arguably are the most fundamental problems of control theory.

In most applications, the internal state is much larger (has more degrees of freedom) than the few "observable" parameters which are measured. However, by combining a series of measurements, the Kalman filter can estimate the entire internal state.

For the Dempster–Shafer theory, each state equation or observation is considered a special case of a linear belief function and the Kalman filtering is a special case of combining linear belief functions on a join-tree or Markov tree. Additional methods include belief filtering which use Bayes or evidential updates to the state equations.

A wide variety of Kalman filters exists by now: Kalman's original formulation - now termed the "simple" Kalman filter, the Kalman–Bucy filter, Schmidt's "extended" filter, the information filter, and a variety of "square-root" filters that were developed by Bierman, Thornton, and many others. Perhaps the most commonly used type of very simple Kalman filter is the phase-locked loop, which is now ubiquitous in radios, especially frequency modulation (FM) radios, television sets, satellite communications receivers, outer space communications systems, and nearly any other electronic communications equipment.

Underlying dynamic system model edit

Kalman filtering is based on linear dynamic systems discretized in the time domain. They are modeled on a Markov chain built on linear operators perturbed by errors that may include Gaussian noise. The state of the target system refers to the ground truth (yet hidden) system configuration of interest, which is represented as a vector of real numbers. At each discrete time increment, a linear operator is applied to the state to generate the new state, with some noise mixed in, and optionally some information from the controls on the system if they are known. Then, another linear operator mixed with more noise generates the measurable outputs (i.e., observation) from the true ("hidden") state. The Kalman filter may be regarded as analogous to the hidden Markov model, with the difference that the hidden state variables have values in a continuous space as opposed to a discrete state space as for the hidden Markov model. There is a strong analogy between the equations of a Kalman Filter and those of the hidden Markov model. A review of this and other models is given in Roweis and Ghahramani (1999)[26] and Hamilton (1994), Chapter 13.[27]

In order to use the Kalman filter to estimate the internal state of a process given only a sequence of noisy observations, one must model the process in accordance with the following framework. This means specifying the matrices, for each time-step k, following:

  • Fk, the state-transition model;
  • Hk, the observation model;
  • Qk, the covariance of the process noise;
  • Rk, the covariance of the observation noise;
  • and sometimes Bk, the control-input model as described below; if Bk is included, then there is also
  • uk, the control vector, representing the controlling input into control-input model.
 
Model underlying the Kalman filter. Squares represent matrices. Ellipses represent multivariate normal distributions (with the mean and covariance matrix enclosed). Unenclosed values are vectors. For the simple case, the various matrices are constant with time, and thus the subscripts are not used, but Kalman filtering allows any of them to change each time step.

The Kalman filter model assumes the true state at time k is evolved from the state at (k − 1) according to

 

where

  • Fk is the state transition model which is applied to the previous state xk−1;
  • Bk is the control-input model which is applied to the control vector uk;
  • wk is the process noise, which is assumed to be drawn from a zero mean multivariate normal distribution,  , with covariance, Qk:  .

At time k an observation (or measurement) zk of the true state xk is made according to

 

where

  • Hk is the observation model, which maps the true state space into the observed space and
  • vk is the observation noise, which is assumed to be zero mean Gaussian white noise with covariance Rk:  .

The initial state, and the noise vectors at each step {x0, w1, ..., wk, v1, ... ,vk} are all assumed to be mutually independent.

Many real-time dynamic systems do not exactly conform to this model. In fact, unmodeled dynamics can seriously degrade the filter performance, even when it was supposed to work with unknown stochastic signals as inputs. The reason for this is that the effect of unmodeled dynamics depends on the input, and, therefore, can bring the estimation algorithm to instability (it diverges). On the other hand, independent white noise signals will not make the algorithm diverge. The problem of distinguishing between measurement noise and unmodeled dynamics is a difficult one and is treated as a problem of control theory using robust control.[28][29]

Details edit

The Kalman filter is a recursive estimator. This means that only the estimated state from the previous time step and the current measurement are needed to compute the estimate for the current state. In contrast to batch estimation techniques, no history of observations and/or estimates is required. In what follows, the notation   represents the estimate of   at time n given observations up to and including at time mn.

The state of the filter is represented by two variables:

  •  , the a posteriori state estimate mean at time k given observations up to and including at time k;
  •  , the a posteriori estimate covariance matrix (a measure of the estimated accuracy of the state estimate).

The algorithm structure of the Kalman filter resembles that of Alpha beta filter. The Kalman filter can be written as a single equation; however, it is most often conceptualized as two distinct phases: "Predict" and "Update". The predict phase uses the state estimate from the previous timestep to produce an estimate of the state at the current timestep. This predicted state estimate is also known as the a priori state estimate because, although it is an estimate of the state at the current timestep, it does not include observation information from the current timestep. In the update phase, the innovation (the pre-fit residual), i.e. the difference between the current a priori prediction and the current observation information, is multiplied by the optimal Kalman gain and combined with the previous state estimate to refine the state estimate. This improved estimate based on the current observation is termed the a posteriori state estimate.

Typically, the two phases alternate, with the prediction advancing the state until the next scheduled observation, and the update incorporating the observation. However, this is not necessary; if an observation is unavailable for some reason, the update may be skipped and multiple prediction procedures performed. Likewise, if multiple independent observations are available at the same time, multiple update procedures may be performed (typically with different observation matrices Hk).[30][31]

Predict edit

Predicted (a priori) state estimate  
Predicted (a priori) estimate covariance  

Update edit

Innovation or measurement pre-fit residual  
Innovation (or pre-fit residual) covariance  
Optimal Kalman gain  
Updated (a posteriori) state estimate  
Updated (a posteriori) estimate covariance  
Measurement post-fit residual  

The formula for the updated (a posteriori) estimate covariance above is valid for the optimal Kk gain that minimizes the residual error, in which form it is most widely used in applications. Proof of the formulae is found in the derivations section, where the formula valid for any Kk is also shown.

A more intuitive way to express the updated state estimate ( ) is:

 

This expression reminds us of a linear interpolation,   for   between [0,1]. In our case:

  •   is the matrix   the takes values from   (high error in the sensor) to   or a projection (low error).
  •   is the internal state   estimated from the model.
  •   is the internal state   estimated from the measurement, assuming   is nonsingular.

This expression also resembles the alpha beta filter update step.

Invariants edit

If the model is accurate, and the values for   and   accurately reflect the distribution of the initial state values, then the following invariants are preserved:

 

where   is the expected value of  . That is, all estimates have a mean error of zero.

Also:

 

so covariance matrices accurately reflect the covariance of estimates.

Estimation of the noise covariances Qk and Rk edit

Practical implementation of a Kalman Filter is often difficult due to the difficulty of getting a good estimate of the noise covariance matrices Qk and Rk. Extensive research has been done to estimate these covariances from data. One practical method of doing this is the autocovariance least-squares (ALS) technique that uses the time-lagged autocovariances of routine operating data to estimate the covariances.[32][33] The GNU Octave and Matlab code used to calculate the noise covariance matrices using the ALS technique is available online using the GNU General Public License.[34] Field Kalman Filter (FKF), a Bayesian algorithm, which allows simultaneous estimation of the state, parameters and noise covariance has been proposed.[35] The FKF algorithm has a recursive formulation, good observed convergence, and relatively low complexity, thus suggesting that the FKF algorithm may possibly be a worthwhile alternative to the Autocovariance Least-Squares methods.

Optimality and performance edit

It follows from theory that the Kalman filter provides an optimal state estimation in cases where a) the model matches the real system perfectly, b) the entering noise is "white" (uncorrelated) and c) the covariances of the noise are known exactly. Correlated noise can also be treated using Kalman filters.[36] Several methods for the noise covariance estimation have been proposed during past decades, including ALS, mentioned in the section above. After the covariances are estimated, it is useful to evaluate the performance of the filter; i.e., whether it is possible to improve the state estimation quality. If the Kalman filter works optimally, the innovation sequence (the output prediction error) is a white noise, therefore the whiteness property of the innovations measures filter performance. Several different methods can be used for this purpose.[37] If the noise terms are distributed in a non-Gaussian manner, methods for assessing performance of the filter estimate, which use probability inequalities or large-sample theory, are known in the literature.[38][39]

Example application, technical edit

 
  Truth;   filtered process;   observations.

Consider a truck on frictionless, straight rails. Initially, the truck is stationary at position 0, but it is buffeted this way and that by random uncontrolled forces. We measure the position of the truck every Δt seconds, but these measurements are imprecise; we want to maintain a model of the truck's position and velocity. We show here how we derive the model from which we create our Kalman filter.

Since   are constant, their time indices are dropped.

The position and velocity of the truck are described by the linear state space

 

where   is the velocity, that is, the derivative of position with respect to time.

We assume that between the (k − 1) and k timestep, uncontrolled forces cause a constant acceleration of ak that is normally distributed with mean 0 and standard deviation σa. From Newton's laws of motion we conclude that

 

(there is no   term since there are no known control inputs. Instead, ak is the effect of an unknown input and   applies that effect to the state vector) where

 

so that

 

where

 

The matrix   is not full rank (it is of rank one if  ). Hence, the distribution   is not absolutely continuous and has no probability density function. Another way to express this, avoiding explicit degenerate distributions is given by

 

At each time phase, a noisy measurement of the true position of the truck is made. Let us suppose the measurement noise vk is also distributed normally, with mean 0 and standard deviation σz.

 

where

 

and

 

We know the initial starting state of the truck with perfect precision, so we initialize

 

and to tell the filter that we know the exact position and velocity, we give it a zero covariance matrix:

 

If the initial position and velocity are not known perfectly, the covariance matrix should be initialized with suitable variances on its diagonal:

 

The filter will then prefer the information from the first measurements over the information already in the model.

Asymptotic form edit

For simplicity, assume that the control input  . Then the Kalman filter may be written:

 

A similar equation holds if we include a non-zero control input. Gain matrices   evolve independently of the measurements  . From above, the four equations needed for updating the Kalman gain are as follows:

 

Since the gain matrices depend only on the model, and not the measurements, they may be computed offline. Convergence of the gain matrices   to an asymptotic matrix   applies for conditions established in Walrand and Dimakis.[40] Simulations establish the number of steps to convergence. For the moving truck example described above, with  . and  , simulation shows convergence in   iterations.

Using the asymptotic gain, and assuming   and   are independent of  , the Kalman filter becomes a linear time-invariant filter:

 

The asymptotic gain  , if it exists, can be computed by first solving the following discrete Riccati equation for the asymptotic state covariance  :[40]

 

The asymptotic gain is then computed as before.

 

Additionally, a form of the asymptotic Kalman filter more commonly used in control theory is given by

 

where

 

This leads to an estimator of the form

 

Derivations edit

The Kalman filter can be derived as a generalized least squares method operating on previous data.[41]

Deriving the posteriori estimate covariance matrix edit

Starting with our invariant on the error covariance Pk | k as above

 

substitute in the definition of  

 

and substitute  

 

and  

 

and by collecting the error vectors we get

 

Since the measurement error vk is uncorrelated with the other terms, this becomes

 

by the properties of vector covariance this becomes

 

which, using our invariant on Pk | k−1 and the definition of Rk becomes

 

This formula (sometimes known as the Joseph form of the covariance update equation) is valid for any value of Kk. It turns out that if Kk is the optimal Kalman gain, this can be simplified further as shown below.

Kalman gain derivation edit

The Kalman filter is a minimum mean-square error estimator. The error in the a posteriori state estimation is

 

We seek to minimize the expected value of the square of the magnitude of this vector,  . This is equivalent to minimizing the trace of the a posteriori estimate covariance matrix  . By expanding out the terms in the equation above and collecting, we get:

 

The trace is minimized when its matrix derivative with respect to the gain matrix is zero. Using the gradient matrix rules and the symmetry of the matrices involved we find that

 

Solving this for Kk yields the Kalman gain:

 

This gain, which is known as the optimal Kalman gain, is the one that yields MMSE estimates when used.

Simplification of the posteriori error covariance formula edit

The formula used to calculate the a posteriori error covariance can be simplified when the Kalman gain equals the optimal value derived above. Multiplying both sides of our Kalman gain formula on the right by SkKkT, it follows that

 

Referring back to our expanded formula for the a posteriori error covariance,

 

we find the last two terms cancel out, giving

 

This formula is computationally cheaper and thus nearly always used in practice, but is only correct for the optimal gain. If arithmetic precision is unusually low causing problems with numerical stability, or if a non-optimal Kalman gain is deliberately used, this simplification cannot be applied; the a posteriori error covariance formula as derived above (Joseph form) must be used.

Sensitivity analysis edit

The Kalman filtering equations provide an estimate of the state   and its error covariance   recursively. The estimate and its quality depend on the system parameters and the noise statistics fed as inputs to the estimator. This section analyzes the effect of uncertainties in the statistical inputs to the filter.[42] In the absence of reliable statistics or the true values of noise covariance matrices   and  , the expression

 

no longer provides the actual error covariance. In other words,  . In most real-time applications, the covariance matrices that are used in designing the Kalman filter are different from the actual (true) noise covariances matrices.[citation needed] This sensitivity analysis describes the behavior of the estimation error covariance when the noise covariances as well as the system matrices   and   that are fed as inputs to the filter are incorrect. Thus, the sensitivity analysis describes the robustness (or sensitivity) of the estimator to misspecified statistical and parametric inputs to the estimator.

This discussion is limited to the error sensitivity analysis for the case of statistical uncertainties. Here the actual noise covariances are denoted by   and   respectively, whereas the design values used in the estimator are   and   respectively. The actual error covariance is denoted by   and   as computed by the Kalman filter is referred to as the Riccati variable. When   and  , this means that  . While computing the actual error covariance using  , substituting for   and using the fact that   and  , results in the following recursive equations for   :

 

and

 

While computing  , by design the filter implicitly assumes that   and  . The recursive expressions for   and   are identical except for the presence of   and   in place of the design values   and   respectively. Researches have been done to analyze Kalman filter system's robustness.[43]

Square root form edit

One problem with the Kalman filter is its numerical stability. If the process noise covariance Qk is small, round-off error often causes a small positive eigenvalue of the state covariance matrix P to be computed as a negative number. This renders the numerical representation of P indefinite, while its true form is positive-definite.

Positive definite matrices have the property that they have a triangular matrix square root P = S·ST. This can be computed efficiently using the Cholesky factorization algorithm, but more importantly, if the covariance is kept in this form, it can never have a negative diagonal or become asymmetric. An equivalent form, which avoids many of the square root operations required by the matrix square root yet preserves the desirable numerical properties, is the U-D decomposition form, P = U·D·UT, where U is a unit triangular matrix (with unit diagonal), and D is a diagonal matrix.

Between the two, the U-D factorization uses the same amount of storage, and somewhat less computation, and is the most commonly used square root form. (Early literature on the relative efficiency is somewhat misleading, as it assumed that square roots were much more time-consuming than divisions,[44]: 69  while on 21st-century computers they are only slightly more expensive.)

Efficient algorithms for the Kalman prediction and update steps in the square root form were developed by G. J. Bierman and C. L. Thornton.[44][45]

The L·D·LT decomposition of the innovation covariance matrix Sk is the basis for another type of numerically efficient and robust square root filter.[46] The algorithm starts with the LU decomposition as implemented in the Linear Algebra PACKage (LAPACK). These results are further factored into the L·D·LT structure with methods given by Golub and Van Loan (algorithm 4.1.2) for a symmetric nonsingular matrix.[47] Any singular covariance matrix is pivoted so that the first diagonal partition is nonsingular and well-conditioned. The pivoting algorithm must retain any portion of the innovation covariance matrix directly corresponding to observed state-variables Hk·xk|k-1 that are associated with auxiliary observations in yk. The l·d·lt square-root filter requires orthogonalization of the observation vector.[45][46] This may be done with the inverse square-root of the covariance matrix for the auxiliary variables using Method 2 in Higham (2002, p. 263).[48]

Parallel form edit

The Kalman filter is efficient for sequential data processing on central processing units (CPUs), but in its original form it is inefficient on parallel architectures such as graphics processing units (GPUs). It is however possible to express the filter-update routine in terms of an associative operator using the formulation in Särkkä (2021).[49] The filter solution can then be retrieved by the use of a prefix sum algorithm which can be efficiently implemented on GPU.[50] This reduces the computational complexity from   in the number of time steps to  .

Relationship to recursive Bayesian estimation edit

The Kalman filter can be presented as one of the simplest dynamic Bayesian networks. The Kalman filter calculates estimates of the true values of states recursively over time using incoming measurements and a mathematical process model. Similarly, recursive Bayesian estimation calculates estimates of an unknown probability density function (PDF) recursively over time using incoming measurements and a mathematical process model.[51]

In recursive Bayesian estimation, the true state is assumed to be an unobserved Markov process, and the measurements are the observed states of a hidden Markov model (HMM).

 
hidden markov model

Because of the Markov assumption, the true state is conditionally independent of all earlier states given the immediately previous state.

 

Similarly, the measurement at the k-th timestep is dependent only upon the current state and is conditionally independent of all other states given the current state.

 

Using these assumptions the probability distribution over all states of the hidden Markov model can be written simply as:

 

However, when a Kalman filter is used to estimate the state x, the probability distribution of interest is that associated with the current states conditioned on the measurements up to the current timestep. This is achieved by marginalizing out the previous states and dividing by the probability of the measurement set.

This results in the predict and update phases of the Kalman filter written probabilistically. The probability distribution associated with the predicted state is the sum (integral) of the products of the probability distribution associated with the transition from the (k − 1)-th timestep to the k-th and the probability distribution associated with the previous state, over all possible  .

 

The measurement set up to time t is

 

The probability distribution of the update is proportional to the product of the measurement likelihood and the predicted state.

 

The denominator

 

is a normalization term.

The remaining probability density functions are

 

The PDF at the previous timestep is assumed inductively to be the estimated state and covariance. This is justified because, as an optimal estimator, the Kalman filter makes best use of the measurements, therefore the PDF for   given the measurements   is the Kalman filter estimate.

Marginal likelihood edit

Related to the recursive Bayesian interpretation described above, the Kalman filter can be viewed as a generative model, i.e., a process for generating a stream of random observations z = (z0, z1, z2, ...). Specifically, the process is

  1. Sample a hidden state   from the Gaussian prior distribution  .
  2. Sample an observation   from the observation model  .
  3. For  , do
    1. Sample the next hidden state   from the transition model  
    2. Sample an observation   from the observation model  

This process has identical structure to the hidden Markov model, except that the discrete state and observations are replaced with continuous variables sampled from Gaussian distributions.

In some applications, it is useful to compute the probability that a Kalman filter with a given set of parameters (prior distribution, transition and observation models, and control inputs) would generate a particular observed signal. This probability is known as the marginal likelihood because it integrates over ("marginalizes out") the values of the hidden state variables, so it can be computed using only the observed signal. The marginal likelihood can be useful to evaluate different parameter choices, or to compare the Kalman filter against other models using Bayesian model comparison.

It is straightforward to compute the marginal likelihood as a side effect of the recursive filtering computation. By the chain rule, the likelihood can be factored as the product of the probability of each observation given previous observations,

 ,

and because the Kalman filter describes a Markov process, all relevant information from previous observations is contained in the current state estimate   Thus the marginal likelihood is given by

 

i.e., a product of Gaussian densities, each corresponding to the density of one observation zk under the current filtering distribution  . This can easily be computed as a simple recursive update; however, to avoid numeric underflow, in a practical implementation it is usually desirable to compute the log marginal likelihood   instead. Adopting the convention  , this can be done via the recursive update rule

 

where   is the dimension of the measurement vector.[52]

An important application where such a (log) likelihood of the observations (given the filter parameters) is used is multi-target tracking. For example, consider an object tracking scenario where a stream of observations is the input, however, it is unknown how many objects are in the scene (or, the number of objects is known but is greater than one). For such a scenario, it can be unknown apriori which observations/measurements were generated by which object. A multiple hypothesis tracker (MHT) typically will form different track association hypotheses, where each hypothesis can be considered as a Kalman filter (for the linear Gaussian case) with a specific set of parameters associated with the hypothesized object. Thus, it is important to compute the likelihood of the observations for the different hypotheses under consideration, such that the most-likely one can be found.

Information filter edit

In cases where the dimension of the observation vector y is bigger than the dimension of the state space vector x, the information filter can avoid the inversion of a bigger matrix in the Kalman gain calculation at the price of inverting a smaller matrix in the prediction step, thus saving computing time. In the information filter, or inverse covariance filter, the estimated covariance and estimated state are replaced by the information matrix and information vector respectively. These are defined as:

 

Similarly the predicted covariance and state have equivalent information forms, defined as:

 

as have the measurement covariance and measurement vector, which are defined as:

 

The information update now becomes a trivial sum.[53]

 

The main advantage of the information filter is that N measurements can be filtered at each time step simply by summing their information matrices and vectors.

 

To predict the information filter the information matrix and vector can be converted back to their state space equivalents, or alternatively the information space prediction can be used.[53]

kalman, filter, statistics, control, theory, also, known, linear, quadratic, estimation, algorithm, that, uses, series, measurements, observed, over, time, including, statistical, noise, other, inaccuracies, produces, estimates, unknown, variables, that, tend,. For statistics and control theory Kalman filtering also known as linear quadratic estimation LQE is an algorithm that uses a series of measurements observed over time including statistical noise and other inaccuracies and produces estimates of unknown variables that tend to be more accurate than those based on a single measurement alone by estimating a joint probability distribution over the variables for each timeframe The filter is named after Rudolf E Kalman who was one of the primary developers of its theory The Kalman filter keeps track of the estimated state of the system and the variance or uncertainty of the estimate The estimate is updated using a state transition model and measurements x k k 1 displaystyle hat x k mid k 1 denotes the estimate of the system s state at time step k before the k th measurement yk has been taken into account P k k 1 displaystyle P k mid k 1 is the corresponding uncertainty This digital filter is sometimes termed the Stratonovich Kalman Bucy filter because it is a special case of a more general nonlinear filter developed somewhat earlier by the Soviet mathematician Ruslan Stratonovich 1 2 3 4 In fact some of the special case linear filter s equations appeared in papers by Stratonovich that were published before summer 1961 when Kalman met with Stratonovich during a conference in Moscow 5 Kalman filtering 6 has numerous technological applications A common application is for guidance navigation and control of vehicles particularly aircraft spacecraft and ships positioned dynamically 7 Furthermore Kalman filtering is a concept much applied in time series analysis used for topics such as signal processing and econometrics Kalman filtering is also one of the main topics of robotic motion planning and control 8 9 and can be used for trajectory optimization 10 Kalman filtering also works for modeling the central nervous system s control of movement Due to the time delay between issuing motor commands and receiving sensory feedback the use of Kalman filters 11 provides a realistic model for making estimates of the current state of a motor system and issuing updated commands 12 The algorithm works by a two phase process having a prediction phase and an update phase For the prediction phase the Kalman filter produces estimates of the current state variables along with their uncertainties Once the outcome of the next measurement necessarily corrupted with some error including random noise is observed these estimates are updated using a weighted average with more weight being given to estimates with greater certainty The algorithm is recursive It can operate in real time using only the present input measurements and the state calculated previously and its uncertainty matrix no additional past information is required Optimality of Kalman filtering assumes that errors have a normal Gaussian distribution In the words of Rudolf E Kalman In summary the following assumptions are made about random processes Physical random phenomena may be thought of as due to primary random sources exciting dynamic systems The primary sources are assumed to be independent gaussian random processes with zero mean the dynamic systems will be linear 13 Though regardless of Gaussianity if the process and measurement covariances are known the Kalman filter is the best possible linear estimator in the minimum mean square error sense 14 It is a common misconception perpetuated in the literature that the Kalman filter cannot be rigorously applied unless all noise processes are assumed to be Gaussian 15 Extensions and generalizations of the method have also been developed such as the extended Kalman filter and the unscented Kalman filter which work on nonlinear systems The basis is a hidden Markov model such that the state space of the latent variables is continuous and all latent and observed variables have Gaussian distributions Kalman filtering has been used successfully in multi sensor fusion 16 and distributed sensor networks to develop distributed or consensus Kalman filtering 17 Contents 1 History 2 Overview of the calculation 3 Example application 4 Technical description and context 5 Underlying dynamic system model 6 Details 6 1 Predict 6 2 Update 6 3 Invariants 6 4 Estimation of the noise covariances Qk and Rk 6 5 Optimality and performance 7 Example application technical 8 Asymptotic form 9 Derivations 9 1 Deriving the posteriori estimate covariance matrix 9 2 Kalman gain derivation 9 3 Simplification of the posteriori error covariance formula 10 Sensitivity analysis 11 Square root form 12 Parallel form 13 Relationship to recursive Bayesian estimation 14 Marginal likelihood 15 Information filter 16 Fixed lag smoother 17 Fixed interval smoothers 17 1 Rauch Tung Striebel 17 2 Modified Bryson Frazier smoother 17 3 Minimum variance smoother 18 Frequency weighted Kalman filters 19 Nonlinear filters 19 1 Extended Kalman filter 19 2 Unscented Kalman filter 19 2 1 Sigma points 19 2 2 Predict 19 2 3 Update 19 3 Discriminative Kalman filter 20 Adaptive Kalman filter 21 Kalman Bucy filter 22 Hybrid Kalman filter 22 1 Initialize 22 2 Predict 22 3 Update 23 Variants for the recovery of sparse signals 24 Relation to Gaussian processes 25 Applications 26 See also 27 References 28 Further reading 29 External linksHistory editThe filtering method is named for Hungarian emigre Rudolf E Kalman although Thorvald Nicolai Thiele 18 19 and Peter Swerling developed a similar algorithm earlier Richard S Bucy of the Johns Hopkins Applied Physics Laboratory contributed to the theory causing it to be known sometimes as Kalman Bucy filtering Kalman was inspired to derive the Kalman filter by applying state variables to the Wiener filtering problem 20 Stanley F Schmidt is generally credited with developing the first implementation of a Kalman filter He realized that the filter could be divided into two distinct parts with one part for time periods between sensor outputs and another part for incorporating measurements 21 It was during a visit by Kalman to the NASA Ames Research Center that Schmidt saw the applicability of Kalman s ideas to the nonlinear problem of trajectory estimation for the Apollo program resulting in its incorporation in the Apollo navigation computer 22 16 This Kalman filtering was first described and developed partially in technical papers by Swerling 1958 Kalman 1960 and Kalman and Bucy 1961 The Apollo computer used 2k of magnetic core RAM and 36k wire rope The CPU was built from ICs Clock speed was under 100 kHz The fact that the MIT engineers were able to pack such good software one of the very first applications of the Kalman filter into such a tiny computer is truly remarkable Interview with Jack Crenshaw by Matthew Reed TRS 80 org 2009 1 Kalman filters have been vital in the implementation of the navigation systems of U S Navy nuclear ballistic missile submarines and in the guidance and navigation systems of cruise missiles such as the U S Navy s Tomahawk missile and the U S Air Force s Air Launched Cruise Missile They are also used in the guidance and navigation systems of reusable launch vehicles and the attitude control and navigation systems of spacecraft which dock at the International Space Station 23 Overview of the calculation editKalman filtering uses a system s dynamic model e g physical laws of motion known control inputs to that system and multiple sequential measurements such as from sensors to form an estimate of the system s varying quantities its state that is better than the estimate obtained by using only one measurement alone As such it is a common sensor fusion and data fusion algorithm Noisy sensor data approximations in the equations that describe the system evolution and external factors that are not accounted for all limit how well it is possible to determine the system s state The Kalman filter deals effectively with the uncertainty due to noisy sensor data and to some extent with random external factors The Kalman filter produces an estimate of the state of the system as an average of the system s predicted state and of the new measurement using a weighted average The purpose of the weights is that values with better i e smaller estimated uncertainty are trusted more The weights are calculated from the covariance a measure of the estimated uncertainty of the prediction of the system s state The result of the weighted average is a new state estimate that lies between the predicted and measured state and has a better estimated uncertainty than either alone This process is repeated at every time step with the new estimate and its covariance informing the prediction used in the following iteration This means that Kalman filter works recursively and requires only the last best guess rather than the entire history of a system s state to calculate a new state The measurements certainty grading and current state estimate are important considerations It is common to discuss the filter s response in terms of the Kalman filter s gain The Kalman gain is the weight given to the measurements and current state estimate and can be tuned to achieve a particular performance With a high gain the filter places more weight on the most recent measurements and thus conforms to them more responsively With a low gain the filter conforms to the model predictions more closely At the extremes a high gain close to one will result in a more jumpy estimated trajectory while a low gain close to zero will smooth out noise but decrease the responsiveness When performing the actual calculations for the filter as discussed below the state estimate and covariances are coded into matrices because of the multiple dimensions involved in a single set of calculations This allows for a representation of linear relationships between different state variables such as position velocity and acceleration in any of the transition models or covariances Example application editAs an example application consider the problem of determining the precise location of a truck The truck can be equipped with a GPS unit that provides an estimate of the position within a few meters The GPS estimate is likely to be noisy readings jump around rapidly though remaining within a few meters of the real position In addition since the truck is expected to follow the laws of physics its position can also be estimated by integrating its velocity over time determined by keeping track of wheel revolutions and the angle of the steering wheel This is a technique known as dead reckoning Typically the dead reckoning will provide a very smooth estimate of the truck s position but it will drift over time as small errors accumulate For this example the Kalman filter can be thought of as operating in two distinct phases predict and update In the prediction phase the truck s old position will be modified according to the physical laws of motion the dynamic or state transition model Not only will a new position estimate be calculated but also a new covariance will be calculated as well Perhaps the covariance is proportional to the speed of the truck because we are more uncertain about the accuracy of the dead reckoning position estimate at high speeds but very certain about the position estimate at low speeds Next in the update phase a measurement of the truck s position is taken from the GPS unit Along with this measurement comes some amount of uncertainty and its covariance relative to that of the prediction from the previous phase determines how much the new measurement will affect the updated prediction Ideally as the dead reckoning estimates tend to drift away from the real position the GPS measurement should pull the position estimate back toward the real position but not disturb it to the point of becoming noisy and rapidly jumping Technical description and context editThe Kalman filter is an efficient recursive filter estimating the internal state of a linear dynamic system from a series of noisy measurements It is used in a wide range of engineering and econometric applications from radar and computer vision to estimation of structural macroeconomic models 24 25 and is an important topic in control theory and control systems engineering Together with the linear quadratic regulator LQR the Kalman filter solves the linear quadratic Gaussian control problem LQG The Kalman filter the linear quadratic regulator and the linear quadratic Gaussian controller are solutions to what arguably are the most fundamental problems of control theory In most applications the internal state is much larger has more degrees of freedom than the few observable parameters which are measured However by combining a series of measurements the Kalman filter can estimate the entire internal state For the Dempster Shafer theory each state equation or observation is considered a special case of a linear belief function and the Kalman filtering is a special case of combining linear belief functions on a join tree or Markov tree Additional methods include belief filtering which use Bayes or evidential updates to the state equations A wide variety of Kalman filters exists by now Kalman s original formulation now termed the simple Kalman filter the Kalman Bucy filter Schmidt s extended filter the information filter and a variety of square root filters that were developed by Bierman Thornton and many others Perhaps the most commonly used type of very simple Kalman filter is the phase locked loop which is now ubiquitous in radios especially frequency modulation FM radios television sets satellite communications receivers outer space communications systems and nearly any other electronic communications equipment Underlying dynamic system model editKalman filtering is based on linear dynamic systems discretized in the time domain They are modeled on a Markov chain built on linear operators perturbed by errors that may include Gaussian noise The state of the target system refers to the ground truth yet hidden system configuration of interest which is represented as a vector of real numbers At each discrete time increment a linear operator is applied to the state to generate the new state with some noise mixed in and optionally some information from the controls on the system if they are known Then another linear operator mixed with more noise generates the measurable outputs i e observation from the true hidden state The Kalman filter may be regarded as analogous to the hidden Markov model with the difference that the hidden state variables have values in a continuous space as opposed to a discrete state space as for the hidden Markov model There is a strong analogy between the equations of a Kalman Filter and those of the hidden Markov model A review of this and other models is given in Roweis and Ghahramani 1999 26 and Hamilton 1994 Chapter 13 27 In order to use the Kalman filter to estimate the internal state of a process given only a sequence of noisy observations one must model the process in accordance with the following framework This means specifying the matrices for each time step k following Fk the state transition model Hk the observation model Qk the covariance of the process noise Rk the covariance of the observation noise and sometimes Bk the control input model as described below if Bk is included then there is also uk the control vector representing the controlling input into control input model nbsp Model underlying the Kalman filter Squares represent matrices Ellipses represent multivariate normal distributions with the mean and covariance matrix enclosed Unenclosed values are vectors For the simple case the various matrices are constant with time and thus the subscripts are not used but Kalman filtering allows any of them to change each time step The Kalman filter model assumes the true state at time k is evolved from the state at k 1 according to x k F k x k 1 B k u k w k displaystyle mathbf x k mathbf F k mathbf x k 1 mathbf B k mathbf u k mathbf w k nbsp where Fk is the state transition model which is applied to the previous state xk 1 Bk is the control input model which is applied to the control vector uk wk is the process noise which is assumed to be drawn from a zero mean multivariate normal distribution N displaystyle mathcal N nbsp with covariance Qk w k N 0 Q k displaystyle mathbf w k sim mathcal N left 0 mathbf Q k right nbsp At time k an observation or measurement zk of the true state xk is made according to z k H k x k v k displaystyle mathbf z k mathbf H k mathbf x k mathbf v k nbsp where Hk is the observation model which maps the true state space into the observed space and vk is the observation noise which is assumed to be zero mean Gaussian white noise with covariance Rk v k N 0 R k displaystyle mathbf v k sim mathcal N left 0 mathbf R k right nbsp The initial state and the noise vectors at each step x0 w1 wk v1 vk are all assumed to be mutually independent Many real time dynamic systems do not exactly conform to this model In fact unmodeled dynamics can seriously degrade the filter performance even when it was supposed to work with unknown stochastic signals as inputs The reason for this is that the effect of unmodeled dynamics depends on the input and therefore can bring the estimation algorithm to instability it diverges On the other hand independent white noise signals will not make the algorithm diverge The problem of distinguishing between measurement noise and unmodeled dynamics is a difficult one and is treated as a problem of control theory using robust control 28 29 Details editThe Kalman filter is a recursive estimator This means that only the estimated state from the previous time step and the current measurement are needed to compute the estimate for the current state In contrast to batch estimation techniques no history of observations and or estimates is required In what follows the notation x n m displaystyle hat mathbf x n mid m nbsp represents the estimate of x displaystyle mathbf x nbsp at time n given observations up to and including at time m n The state of the filter is represented by two variables x k k displaystyle mathbf x k mid k nbsp the a posteriori state estimate mean at time k given observations up to and including at time k P k k displaystyle mathbf P k mid k nbsp the a posteriori estimate covariance matrix a measure of the estimated accuracy of the state estimate The algorithm structure of the Kalman filter resembles that of Alpha beta filter The Kalman filter can be written as a single equation however it is most often conceptualized as two distinct phases Predict and Update The predict phase uses the state estimate from the previous timestep to produce an estimate of the state at the current timestep This predicted state estimate is also known as the a priori state estimate because although it is an estimate of the state at the current timestep it does not include observation information from the current timestep In the update phase the innovation the pre fit residual i e the difference between the current a priori prediction and the current observation information is multiplied by the optimal Kalman gain and combined with the previous state estimate to refine the state estimate This improved estimate based on the current observation is termed the a posteriori state estimate Typically the two phases alternate with the prediction advancing the state until the next scheduled observation and the update incorporating the observation However this is not necessary if an observation is unavailable for some reason the update may be skipped and multiple prediction procedures performed Likewise if multiple independent observations are available at the same time multiple update procedures may be performed typically with different observation matrices Hk 30 31 Predict edit Predicted a priori state estimate x k k 1 F k x k 1 k 1 B k u k displaystyle hat mathbf x k mid k 1 mathbf F k mathbf x k 1 mid k 1 mathbf B k mathbf u k nbsp Predicted a priori estimate covariance P k k 1 F k P k 1 k 1 F k T Q k displaystyle hat mathbf P k mid k 1 mathbf F k mathbf P k 1 mid k 1 mathbf F k textsf T mathbf Q k nbsp Update edit Innovation or measurement pre fit residual y k z k H k x k k 1 displaystyle tilde mathbf y k mathbf z k mathbf H k hat mathbf x k mid k 1 nbsp Innovation or pre fit residual covariance S k H k P k k 1 H k T R k displaystyle mathbf S k mathbf H k hat mathbf P k mid k 1 mathbf H k textsf T mathbf R k nbsp Optimal Kalman gain K k P k k 1 H k T S k 1 displaystyle mathbf K k hat mathbf P k mid k 1 mathbf H k textsf T mathbf S k 1 nbsp Updated a posteriori state estimate x k k x k k 1 K k y k displaystyle hat mathbf x k mid k hat mathbf x k mid k 1 mathbf K k tilde mathbf y k nbsp Updated a posteriori estimate covariance P k k I K k H k P k k 1 displaystyle mathbf P k k left mathbf I mathbf K k mathbf H k right hat mathbf P k k 1 nbsp Measurement post fit residual y k k z k H k x k k displaystyle tilde mathbf y k mid k mathbf z k mathbf H k hat mathbf x k mid k nbsp The formula for the updated a posteriori estimate covariance above is valid for the optimal Kk gain that minimizes the residual error in which form it is most widely used in applications Proof of the formulae is found in the derivations section where the formula valid for any Kk is also shown A more intuitive way to express the updated state estimate x k k displaystyle hat mathbf x k mid k nbsp is x k k I K k H k x k k 1 K k z k displaystyle hat mathbf x k mid k mathbf I mathbf K k mathbf H k hat mathbf x k mid k 1 mathbf K k mathbf z k nbsp This expression reminds us of a linear interpolation x 1 t a t b displaystyle x 1 t a t b nbsp for t displaystyle t nbsp between 0 1 In our case t displaystyle t nbsp is the matrix K k H k displaystyle mathbf K k mathbf H k nbsp the takes values from 0 displaystyle 0 nbsp high error in the sensor to I displaystyle I nbsp or a projection low error a displaystyle a nbsp is the internal state x k k 1 displaystyle hat mathbf x k mid k 1 nbsp estimated from the model b displaystyle b nbsp is the internal state H k 1 z k displaystyle mathbf H k 1 mathbf z k nbsp estimated from the measurement assuming H k displaystyle mathbf H k nbsp is nonsingular This expression also resembles the alpha beta filter update step Invariants edit If the model is accurate and the values for x 0 0 displaystyle hat mathbf x 0 mid 0 nbsp and P 0 0 displaystyle mathbf P 0 mid 0 nbsp accurately reflect the distribution of the initial state values then the following invariants are preserved E x k x k k E x k x k k 1 0 E y k 0 displaystyle begin aligned operatorname E mathbf x k hat mathbf x k mid k amp operatorname E mathbf x k hat mathbf x k mid k 1 0 operatorname E tilde mathbf y k amp 0 end aligned nbsp where E 3 displaystyle operatorname E xi nbsp is the expected value of 3 displaystyle xi nbsp That is all estimates have a mean error of zero Also P k k cov x k x k k P k k 1 cov x k x k k 1 S k cov y k displaystyle begin aligned mathbf P k mid k amp operatorname cov left mathbf x k hat mathbf x k mid k right mathbf P k mid k 1 amp operatorname cov left mathbf x k hat mathbf x k mid k 1 right mathbf S k amp operatorname cov left tilde mathbf y k right end aligned nbsp so covariance matrices accurately reflect the covariance of estimates Estimation of the noise covariances Qk and Rk edit Practical implementation of a Kalman Filter is often difficult due to the difficulty of getting a good estimate of the noise covariance matrices Qk and Rk Extensive research has been done to estimate these covariances from data One practical method of doing this is the autocovariance least squares ALS technique that uses the time lagged autocovariances of routine operating data to estimate the covariances 32 33 The GNU Octave and Matlab code used to calculate the noise covariance matrices using the ALS technique is available online using the GNU General Public License 34 Field Kalman Filter FKF a Bayesian algorithm which allows simultaneous estimation of the state parameters and noise covariance has been proposed 35 The FKF algorithm has a recursive formulation good observed convergence and relatively low complexity thus suggesting that the FKF algorithm may possibly be a worthwhile alternative to the Autocovariance Least Squares methods Optimality and performance edit It follows from theory that the Kalman filter provides an optimal state estimation in cases where a the model matches the real system perfectly b the entering noise is white uncorrelated and c the covariances of the noise are known exactly Correlated noise can also be treated using Kalman filters 36 Several methods for the noise covariance estimation have been proposed during past decades including ALS mentioned in the section above After the covariances are estimated it is useful to evaluate the performance of the filter i e whether it is possible to improve the state estimation quality If the Kalman filter works optimally the innovation sequence the output prediction error is a white noise therefore the whiteness property of the innovations measures filter performance Several different methods can be used for this purpose 37 If the noise terms are distributed in a non Gaussian manner methods for assessing performance of the filter estimate which use probability inequalities or large sample theory are known in the literature 38 39 Example application technical edit nbsp Truth filtered process observations Consider a truck on frictionless straight rails Initially the truck is stationary at position 0 but it is buffeted this way and that by random uncontrolled forces We measure the position of the truck every Dt seconds but these measurements are imprecise we want to maintain a model of the truck s position and velocity We show here how we derive the model from which we create our Kalman filter Since F H R Q displaystyle mathbf F mathbf H mathbf R mathbf Q nbsp are constant their time indices are dropped The position and velocity of the truck are described by the linear state space x k x x displaystyle mathbf x k begin bmatrix x dot x end bmatrix nbsp where x displaystyle dot x nbsp is the velocity that is the derivative of position with respect to time We assume that between the k 1 and k timestep uncontrolled forces cause a constant acceleration of ak that is normally distributed with mean 0 and standard deviation sa From Newton s laws of motion we conclude that x k F x k 1 G a k displaystyle mathbf x k mathbf F mathbf x k 1 mathbf G a k nbsp there is no B u displaystyle mathbf B u nbsp term since there are no known control inputs Instead ak is the effect of an unknown input and G displaystyle mathbf G nbsp applies that effect to the state vector where F 1 D t 0 1 G 1 2 D t 2 D t displaystyle begin aligned mathbf F amp begin bmatrix 1 amp Delta t 0 amp 1 end bmatrix 4pt mathbf G amp begin bmatrix frac 1 2 Delta t 2 6pt Delta t end bmatrix end aligned nbsp so that x k F x k 1 w k displaystyle mathbf x k mathbf F mathbf x k 1 mathbf w k nbsp where w k N 0 Q Q G G T s a 2 1 4 D t 4 1 2 D t 3 1 2 D t 3 D t 2 s a 2 displaystyle begin aligned mathbf w k amp sim N 0 mathbf Q mathbf Q amp mathbf G mathbf G textsf T sigma a 2 begin bmatrix frac 1 4 Delta t 4 amp frac 1 2 Delta t 3 6pt frac 1 2 Delta t 3 amp Delta t 2 end bmatrix sigma a 2 end aligned nbsp The matrix Q displaystyle mathbf Q nbsp is not full rank it is of rank one if D t 0 displaystyle Delta t neq 0 nbsp Hence the distribution N 0 Q displaystyle N 0 mathbf Q nbsp is not absolutely continuous and has no probability density function Another way to express this avoiding explicit degenerate distributions is given by w k G N 0 s a 2 displaystyle mathbf w k sim mathbf G cdot N left 0 sigma a 2 right nbsp At each time phase a noisy measurement of the true position of the truck is made Let us suppose the measurement noise vk is also distributed normally with mean 0 and standard deviation sz z k H x k v k displaystyle mathbf z k mathbf Hx k mathbf v k nbsp where H 1 0 displaystyle mathbf H begin bmatrix 1 amp 0 end bmatrix nbsp and R E v k v k T s z 2 displaystyle mathbf R mathrm E left mathbf v k mathbf v k textsf T right begin bmatrix sigma z 2 end bmatrix nbsp We know the initial starting state of the truck with perfect precision so we initialize x 0 0 0 0 displaystyle hat mathbf x 0 mid 0 begin bmatrix 0 0 end bmatrix nbsp and to tell the filter that we know the exact position and velocity we give it a zero covariance matrix P 0 0 0 0 0 0 displaystyle mathbf P 0 mid 0 begin bmatrix 0 amp 0 0 amp 0 end bmatrix nbsp If the initial position and velocity are not known perfectly the covariance matrix should be initialized with suitable variances on its diagonal P 0 0 s x 2 0 0 s x 2 displaystyle mathbf P 0 mid 0 begin bmatrix sigma x 2 amp 0 0 amp sigma dot x 2 end bmatrix nbsp The filter will then prefer the information from the first measurements over the information already in the model Asymptotic form editFor simplicity assume that the control input u k 0 displaystyle mathbf u k mathbf 0 nbsp Then the Kalman filter may be written x k k F k x k 1 k 1 K k z k H k F k x k 1 k 1 displaystyle hat mathbf x k mid k mathbf F k hat mathbf x k 1 mid k 1 mathbf K k mathbf z k mathbf H k mathbf F k hat mathbf x k 1 mid k 1 nbsp A similar equation holds if we include a non zero control input Gain matrices K k displaystyle mathbf K k nbsp evolve independently of the measurements z k displaystyle mathbf z k nbsp From above the four equations needed for updating the Kalman gain are as follows P k k 1 F k P k 1 k 1 F k T Q k S k H k P k k 1 H k T R k K k P k k 1 H k T S k 1 P k k I K k H k P k k 1 displaystyle begin aligned mathbf P k mid k 1 amp mathbf F k mathbf P k 1 mid k 1 mathbf F k textsf T mathbf Q k mathbf S k amp mathbf H k mathbf P k mid k 1 mathbf H k textsf T mathbf R k mathbf K k amp mathbf P k mid k 1 mathbf H k textsf T mathbf S k 1 mathbf P k k amp left mathbf I mathbf K k mathbf H k right mathbf P k k 1 end aligned nbsp Since the gain matrices depend only on the model and not the measurements they may be computed offline Convergence of the gain matrices K k displaystyle mathbf K k nbsp to an asymptotic matrix K displaystyle mathbf K infty nbsp applies for conditions established in Walrand and Dimakis 40 Simulations establish the number of steps to convergence For the moving truck example described above with D t 1 displaystyle Delta t 1 nbsp and s a 2 s z 2 s x 2 s x 2 1 displaystyle sigma a 2 sigma z 2 sigma x 2 sigma dot x 2 1 nbsp simulation shows convergence in 10 displaystyle 10 nbsp iterations Using the asymptotic gain and assuming H k displaystyle mathbf H k nbsp and F k displaystyle mathbf F k nbsp are independent of k displaystyle k nbsp the Kalman filter becomes a linear time invariant filter x k F x k 1 K z k H F x k 1 displaystyle hat mathbf x k mathbf F hat mathbf x k 1 mathbf K infty mathbf z k mathbf H mathbf F hat mathbf x k 1 nbsp The asymptotic gain K displaystyle mathbf K infty nbsp if it exists can be computed by first solving the following discrete Riccati equation for the asymptotic state covariance P displaystyle mathbf P infty nbsp 40 P F P P H T H P H T R 1 H P F T Q displaystyle mathbf P infty mathbf F left mathbf P infty mathbf P infty mathbf H textsf T left mathbf H mathbf P infty mathbf H textsf T mathbf R right 1 mathbf H mathbf P infty right mathbf F textsf T mathbf Q nbsp The asymptotic gain is then computed as before K P H T R H P H T 1 displaystyle mathbf K infty mathbf P infty mathbf H textsf T left mathbf R mathbf H mathbf P infty mathbf H textsf T right 1 nbsp Additionally a form of the asymptotic Kalman filter more commonly used in control theory is given by x k 1 F x k B u k K z k H x k displaystyle displaystyle hat mathbf x k 1 mathbf F hat mathbf x k mathbf B mathbf u k mathbf overline K infty mathbf z k mathbf H hat mathbf x k nbsp where K F P H T R H P H T 1 displaystyle overline mathbf K infty mathbf F mathbf P infty mathbf H textsf T left mathbf R mathbf H mathbf P infty mathbf H textsf T right 1 nbsp This leads to an estimator of the form x k 1 F K H x k B u k K z k displaystyle displaystyle hat mathbf x k 1 mathbf F overline mathbf K infty mathbf H hat mathbf x k mathbf B mathbf u k mathbf overline K infty mathbf z k nbsp Derivations editThis section needs additional citations for verification Please help improve this article by adding citations to reliable sources in this section Unsourced material may be challenged and removed December 2010 Learn how and when to remove this template message The Kalman filter can be derived as a generalized least squares method operating on previous data 41 Deriving the posteriori estimate covariance matrix edit Starting with our invariant on the error covariance Pk k as above P k k cov x k x k k displaystyle mathbf P k mid k operatorname cov left mathbf x k hat mathbf x k mid k right nbsp substitute in the definition of x k k displaystyle hat mathbf x k mid k nbsp P k k cov x k x k k 1 K k y k displaystyle mathbf P k mid k operatorname cov left mathbf x k left hat mathbf x k mid k 1 mathbf K k tilde mathbf y k right right nbsp and substitute y k displaystyle tilde mathbf y k nbsp P k k cov x k x k k 1 K k z k H k x k k 1 displaystyle mathbf P k mid k operatorname cov left mathbf x k left hat mathbf x k mid k 1 mathbf K k left mathbf z k mathbf H k hat mathbf x k mid k 1 right right right nbsp and z k displaystyle mathbf z k nbsp P k k cov x k x k k 1 K k H k x k v k H k x k k 1 displaystyle mathbf P k mid k operatorname cov left mathbf x k left hat mathbf x k mid k 1 mathbf K k left mathbf H k mathbf x k mathbf v k mathbf H k hat mathbf x k mid k 1 right right right nbsp and by collecting the error vectors we get P k k cov I K k H k x k x k k 1 K k v k displaystyle mathbf P k mid k operatorname cov left left mathbf I mathbf K k mathbf H k right left mathbf x k hat mathbf x k mid k 1 right mathbf K k mathbf v k right nbsp Since the measurement error vk is uncorrelated with the other terms this becomes P k k cov I K k H k x k x k k 1 cov K k v k displaystyle mathbf P k mid k operatorname cov left left mathbf I mathbf K k mathbf H k right left mathbf x k hat mathbf x k mid k 1 right right operatorname cov left mathbf K k mathbf v k right nbsp by the properties of vector covariance this becomes P k k I K k H k cov x k x k k 1 I K k H k T K k cov v k K k T displaystyle mathbf P k mid k left mathbf I mathbf K k mathbf H k right operatorname cov left mathbf x k hat mathbf x k mid k 1 right left mathbf I mathbf K k mathbf H k right textsf T mathbf K k operatorname cov left mathbf v k right mathbf K k textsf T nbsp which using our invariant on Pk k 1 and the definition of Rk becomes P k k I K k H k P k k 1 I K k H k T K k R k K k T displaystyle mathbf P k mid k left mathbf I mathbf K k mathbf H k right mathbf P k mid k 1 left mathbf I mathbf K k mathbf H k right textsf T mathbf K k mathbf R k mathbf K k textsf T nbsp This formula sometimes known as the Joseph form of the covariance update equation is valid for any value of Kk It turns out that if Kk is the optimal Kalman gain this can be simplified further as shown below Kalman gain derivation edit The Kalman filter is a minimum mean square error estimator The error in the a posteriori state estimation is x k x k k displaystyle mathbf x k hat mathbf x k mid k nbsp We seek to minimize the expected value of the square of the magnitude of this vector E x k x k k 2 displaystyle operatorname E left left mathbf x k hat mathbf x k k right 2 right nbsp This is equivalent to minimizing the trace of the a posteriori estimate covariance matrix P k k displaystyle mathbf P k k nbsp By expanding out the terms in the equation above and collecting we get P k k P k k 1 K k H k P k k 1 P k k 1 H k T K k T K k H k P k k 1 H k T R k K k T P k k 1 K k H k P k k 1 P k k 1 H k T K k T K k S k K k T displaystyle begin aligned mathbf P k mid k amp mathbf P k mid k 1 mathbf K k mathbf H k mathbf P k mid k 1 mathbf P k mid k 1 mathbf H k textsf T mathbf K k textsf T mathbf K k left mathbf H k mathbf P k mid k 1 mathbf H k textsf T mathbf R k right mathbf K k textsf T 6pt amp mathbf P k mid k 1 mathbf K k mathbf H k mathbf P k mid k 1 mathbf P k mid k 1 mathbf H k textsf T mathbf K k textsf T mathbf K k mathbf S k mathbf K k textsf T end aligned nbsp The trace is minimized when its matrix derivative with respect to the gain matrix is zero Using the gradient matrix rules and the symmetry of the matrices involved we find that tr P k k K k 2 H k P k k 1 T 2 K k S k 0 displaystyle frac partial operatorname tr mathbf P k mid k partial mathbf K k 2 left mathbf H k mathbf P k mid k 1 right textsf T 2 mathbf K k mathbf S k 0 nbsp Solving this for Kk yields the Kalman gain K k S k H k P k k 1 T P k k 1 H k T K k P k k 1 H k T S k 1 displaystyle begin aligned mathbf K k mathbf S k amp left mathbf H k mathbf P k mid k 1 right textsf T mathbf P k mid k 1 mathbf H k textsf T Rightarrow mathbf K k amp mathbf P k mid k 1 mathbf H k textsf T mathbf S k 1 end aligned nbsp This gain which is known as the optimal Kalman gain is the one that yields MMSE estimates when used Simplification of the posteriori error covariance formula edit The formula used to calculate the a posteriori error covariance can be simplified when the Kalman gain equals the optimal value derived above Multiplying both sides of our Kalman gain formula on the right by SkKkT it follows that K k S k K k T P k k 1 H k T K k T displaystyle mathbf K k mathbf S k mathbf K k textsf T mathbf P k mid k 1 mathbf H k textsf T mathbf K k textsf T nbsp Referring back to our expanded formula for the a posteriori error covariance P k k P k k 1 K k H k P k k 1 P k k 1 H k T K k T K k S k K k T displaystyle mathbf P k mid k mathbf P k mid k 1 mathbf K k mathbf H k mathbf P k mid k 1 mathbf P k mid k 1 mathbf H k textsf T mathbf K k textsf T mathbf K k mathbf S k mathbf K k textsf T nbsp we find the last two terms cancel out giving P k k P k k 1 K k H k P k k 1 I K k H k P k k 1 displaystyle mathbf P k mid k mathbf P k mid k 1 mathbf K k mathbf H k mathbf P k mid k 1 mathbf I mathbf K k mathbf H k mathbf P k mid k 1 nbsp This formula is computationally cheaper and thus nearly always used in practice but is only correct for the optimal gain If arithmetic precision is unusually low causing problems with numerical stability or if a non optimal Kalman gain is deliberately used this simplification cannot be applied the a posteriori error covariance formula as derived above Joseph form must be used Sensitivity analysis editThis section needs additional citations for verification Please help improve this article by adding citations to reliable sources in this section Unsourced material may be challenged and removed December 2010 Learn how and when to remove this template message The Kalman filtering equations provide an estimate of the state x k k displaystyle hat mathbf x k mid k nbsp and its error covariance P k k displaystyle mathbf P k mid k nbsp recursively The estimate and its quality depend on the system parameters and the noise statistics fed as inputs to the estimator This section analyzes the effect of uncertainties in the statistical inputs to the filter 42 In the absence of reliable statistics or the true values of noise covariance matrices Q k displaystyle mathbf Q k nbsp and R k displaystyle mathbf R k nbsp the expression P k k I K k H k P k k 1 I K k H k T K k R k K k T displaystyle mathbf P k mid k left mathbf I mathbf K k mathbf H k right mathbf P k mid k 1 left mathbf I mathbf K k mathbf H k right textsf T mathbf K k mathbf R k mathbf K k textsf T nbsp no longer provides the actual error covariance In other words P k k E x k x k k x k x k k T displaystyle mathbf P k mid k neq E left left mathbf x k hat mathbf x k mid k right left mathbf x k hat mathbf x k mid k right textsf T right nbsp In most real time applications the covariance matrices that are used in designing the Kalman filter are different from the actual true noise covariances matrices citation needed This sensitivity analysis describes the behavior of the estimation error covariance when the noise covariances as well as the system matrices F k displaystyle mathbf F k nbsp and H k displaystyle mathbf H k nbsp that are fed as inputs to the filter are incorrect Thus the sensitivity analysis describes the robustness or sensitivity of the estimator to misspecified statistical and parametric inputs to the estimator This discussion is limited to the error sensitivity analysis for the case of statistical uncertainties Here the actual noise covariances are denoted by Q k a displaystyle mathbf Q k a nbsp and R k a displaystyle mathbf R k a nbsp respectively whereas the design values used in the estimator are Q k displaystyle mathbf Q k nbsp and R k displaystyle mathbf R k nbsp respectively The actual error covariance is denoted by P k k a displaystyle mathbf P k mid k a nbsp and P k k displaystyle mathbf P k mid k nbsp as computed by the Kalman filter is referred to as the Riccati variable When Q k Q k a displaystyle mathbf Q k equiv mathbf Q k a nbsp and R k R k a displaystyle mathbf R k equiv mathbf R k a nbsp this means that P k k P k k a displaystyle mathbf P k mid k mathbf P k mid k a nbsp While computing the actual error covariance using P k k a E x k x k k x k x k k T displaystyle mathbf P k mid k a E left left mathbf x k hat mathbf x k mid k right left mathbf x k hat mathbf x k mid k right textsf T right nbsp substituting for x k k displaystyle widehat mathbf x k mid k nbsp and using the fact that E w k w k T Q k a displaystyle E left mathbf w k mathbf w k textsf T right mathbf Q k a nbsp and E v k v k T R k a displaystyle E left mathbf v k mathbf v k textsf T right mathbf R k a nbsp results in the following recursive equations for P k k a displaystyle mathbf P k mid k a nbsp P k k 1 a F k P k 1 k 1 a F k T Q k a displaystyle mathbf P k mid k 1 a mathbf F k mathbf P k 1 mid k 1 a mathbf F k textsf T mathbf Q k a nbsp and P k k a I K k H k P k k 1 a I K k H k T K k R k a K k T displaystyle mathbf P k mid k a left mathbf I mathbf K k mathbf H k right mathbf P k mid k 1 a left mathbf I mathbf K k mathbf H k right textsf T mathbf K k mathbf R k a mathbf K k textsf T nbsp While computing P k k displaystyle mathbf P k mid k nbsp by design the filter implicitly assumes that E w k w k T Q k displaystyle E left mathbf w k mathbf w k textsf T right mathbf Q k nbsp and E v k v k T R k displaystyle E left mathbf v k mathbf v k textsf T right mathbf R k nbsp The recursive expressions for P k k a displaystyle mathbf P k mid k a nbsp and P k k displaystyle mathbf P k mid k nbsp are identical except for the presence of Q k a displaystyle mathbf Q k a nbsp and R k a displaystyle mathbf R k a nbsp in place of the design values Q k displaystyle mathbf Q k nbsp and R k displaystyle mathbf R k nbsp respectively Researches have been done to analyze Kalman filter system s robustness 43 Square root form editOne problem with the Kalman filter is its numerical stability If the process noise covariance Qk is small round off error often causes a small positive eigenvalue of the state covariance matrix P to be computed as a negative number This renders the numerical representation of P indefinite while its true form is positive definite Positive definite matrices have the property that they have a triangular matrix square root P S ST This can be computed efficiently using the Cholesky factorization algorithm but more importantly if the covariance is kept in this form it can never have a negative diagonal or become asymmetric An equivalent form which avoids many of the square root operations required by the matrix square root yet preserves the desirable numerical properties is the U D decomposition form P U D UT where U is a unit triangular matrix with unit diagonal and D is a diagonal matrix Between the two the U D factorization uses the same amount of storage and somewhat less computation and is the most commonly used square root form Early literature on the relative efficiency is somewhat misleading as it assumed that square roots were much more time consuming than divisions 44 69 while on 21st century computers they are only slightly more expensive Efficient algorithms for the Kalman prediction and update steps in the square root form were developed by G J Bierman and C L Thornton 44 45 The L D LT decomposition of the innovation covariance matrix Sk is the basis for another type of numerically efficient and robust square root filter 46 The algorithm starts with the LU decomposition as implemented in the Linear Algebra PACKage LAPACK These results are further factored into the L D LT structure with methods given by Golub and Van Loan algorithm 4 1 2 for a symmetric nonsingular matrix 47 Any singular covariance matrix is pivoted so that the first diagonal partition is nonsingular and well conditioned The pivoting algorithm must retain any portion of the innovation covariance matrix directly corresponding to observed state variables Hk xk k 1 that are associated with auxiliary observations in yk The l d lt square root filter requires orthogonalization of the observation vector 45 46 This may be done with the inverse square root of the covariance matrix for the auxiliary variables using Method 2 in Higham 2002 p 263 48 Parallel form editThe Kalman filter is efficient for sequential data processing on central processing units CPUs but in its original form it is inefficient on parallel architectures such as graphics processing units GPUs It is however possible to express the filter update routine in terms of an associative operator using the formulation in Sarkka 2021 49 The filter solution can then be retrieved by the use of a prefix sum algorithm which can be efficiently implemented on GPU 50 This reduces the computational complexity from O N displaystyle O N nbsp in the number of time steps to O log N displaystyle O log N nbsp Relationship to recursive Bayesian estimation editThe Kalman filter can be presented as one of the simplest dynamic Bayesian networks The Kalman filter calculates estimates of the true values of states recursively over time using incoming measurements and a mathematical process model Similarly recursive Bayesian estimation calculates estimates of an unknown probability density function PDF recursively over time using incoming measurements and a mathematical process model 51 In recursive Bayesian estimation the true state is assumed to be an unobserved Markov process and the measurements are the observed states of a hidden Markov model HMM nbsp hidden markov modelBecause of the Markov assumption the true state is conditionally independent of all earlier states given the immediately previous state p x k x 0 x k 1 p x k x k 1 displaystyle p mathbf x k mid mathbf x 0 dots mathbf x k 1 p mathbf x k mid mathbf x k 1 nbsp Similarly the measurement at the k th timestep is dependent only upon the current state and is conditionally independent of all other states given the current state p z k x 0 x k p z k x k displaystyle p mathbf z k mid mathbf x 0 dots mathbf x k p mathbf z k mid mathbf x k nbsp Using these assumptions the probability distribution over all states of the hidden Markov model can be written simply as p x 0 x k z 1 z k p x 0 i 1 k p z i x i p x i x i 1 displaystyle p left mathbf x 0 dots mathbf x k mathbf z 1 dots mathbf z k right p left mathbf x 0 right prod i 1 k p left mathbf z i mid mathbf x i right p left mathbf x i mid mathbf x i 1 right nbsp However when a Kalman filter is used to estimate the state x the probability distribution of interest is that associated with the current states conditioned on the measurements up to the current timestep This is achieved by marginalizing out the previous states and dividing by the probability of the measurement set This results in the predict and update phases of the Kalman filter written probabilistically The probability distribution associated with the predicted state is the sum integral of the products of the probability distribution associated with the transition from the k 1 th timestep to the k th and the probability distribution associated with the previous state over all possible x k 1 displaystyle x k 1 nbsp p x k Z k 1 p x k x k 1 p x k 1 Z k 1 d x k 1 displaystyle p left mathbf x k mid mathbf Z k 1 right int p left mathbf x k mid mathbf x k 1 right p left mathbf x k 1 mid mathbf Z k 1 right d mathbf x k 1 nbsp The measurement set up to time t is Z t z 1 z t displaystyle mathbf Z t left mathbf z 1 dots mathbf z t right nbsp The probability distribution of the update is proportional to the product of the measurement likelihood and the predicted state p x k Z k p z k x k p x k Z k 1 p z k Z k 1 displaystyle p left mathbf x k mid mathbf Z k right frac p left mathbf z k mid mathbf x k right p left mathbf x k mid mathbf Z k 1 right p left mathbf z k mid mathbf Z k 1 right nbsp The denominator p z k Z k 1 p z k x k p x k Z k 1 d x k displaystyle p left mathbf z k mid mathbf Z k 1 right int p left mathbf z k mid mathbf x k right p left mathbf x k mid mathbf Z k 1 right d mathbf x k nbsp is a normalization term The remaining probability density functions are p x k x k 1 N F k x k 1 Q k p z k x k N H k x k R k p x k 1 Z k 1 N x k 1 P k 1 displaystyle begin aligned p left mathbf x k mid mathbf x k 1 right amp mathcal N left mathbf F k mathbf x k 1 mathbf Q k right p left mathbf z k mid mathbf x k right amp mathcal N left mathbf H k mathbf x k mathbf R k right p left mathbf x k 1 mid mathbf Z k 1 right amp mathcal N left hat mathbf x k 1 mathbf P k 1 right end aligned nbsp The PDF at the previous timestep is assumed inductively to be the estimated state and covariance This is justified because as an optimal estimator the Kalman filter makes best use of the measurements therefore the PDF for x k displaystyle mathbf x k nbsp given the measurements Z k displaystyle mathbf Z k nbsp is the Kalman filter estimate Marginal likelihood editRelated to the recursive Bayesian interpretation described above the Kalman filter can be viewed as a generative model i e a process for generating a stream of random observations z z0 z1 z2 Specifically the process is Sample a hidden state x 0 displaystyle mathbf x 0 nbsp from the Gaussian prior distribution p x 0 N x 0 0 P 0 0 displaystyle p left mathbf x 0 right mathcal N left hat mathbf x 0 mid 0 mathbf P 0 mid 0 right nbsp Sample an observation z 0 displaystyle mathbf z 0 nbsp from the observation model p z 0 x 0 N H 0 x 0 R 0 displaystyle p left mathbf z 0 mid mathbf x 0 right mathcal N left mathbf H 0 mathbf x 0 mathbf R 0 right nbsp For k 1 2 3 displaystyle k 1 2 3 ldots nbsp do Sample the next hidden state x k displaystyle mathbf x k nbsp from the transition model p x k x k 1 N F k x k 1 B k u k Q k displaystyle p left mathbf x k mid mathbf x k 1 right mathcal N left mathbf F k mathbf x k 1 mathbf B k mathbf u k mathbf Q k right nbsp Sample an observation z k displaystyle mathbf z k nbsp from the observation model p z k x k N H k x k R k displaystyle p left mathbf z k mid mathbf x k right mathcal N left mathbf H k mathbf x k mathbf R k right nbsp This process has identical structure to the hidden Markov model except that the discrete state and observations are replaced with continuous variables sampled from Gaussian distributions In some applications it is useful to compute the probability that a Kalman filter with a given set of parameters prior distribution transition and observation models and control inputs would generate a particular observed signal This probability is known as the marginal likelihood because it integrates over marginalizes out the values of the hidden state variables so it can be computed using only the observed signal The marginal likelihood can be useful to evaluate different parameter choices or to compare the Kalman filter against other models using Bayesian model comparison It is straightforward to compute the marginal likelihood as a side effect of the recursive filtering computation By the chain rule the likelihood can be factored as the product of the probability of each observation given previous observations p z k 0 T p z k z k 1 z 0 displaystyle p mathbf z prod k 0 T p left mathbf z k mid mathbf z k 1 ldots mathbf z 0 right nbsp and because the Kalman filter describes a Markov process all relevant information from previous observations is contained in the current state estimate x k k 1 P k k 1 displaystyle hat mathbf x k mid k 1 mathbf P k mid k 1 nbsp Thus the marginal likelihood is given by p z k 0 T p z k x k p x k z k 1 z 0 d x k k 0 T N z k H k x k R k N x k x k k 1 P k k 1 d x k k 0 T N z k H k x k k 1 R k H k P k k 1 H k T k 0 T N z k H k x k k 1 S k displaystyle begin aligned p mathbf z amp prod k 0 T int p left mathbf z k mid mathbf x k right p left mathbf x k mid mathbf z k 1 ldots mathbf z 0 right d mathbf x k amp prod k 0 T int mathcal N left mathbf z k mathbf H k mathbf x k mathbf R k right mathcal N left mathbf x k hat mathbf x k mid k 1 mathbf P k mid k 1 right d mathbf x k amp prod k 0 T mathcal N left mathbf z k mathbf H k hat mathbf x k mid k 1 mathbf R k mathbf H k mathbf P k mid k 1 mathbf H k textsf T right amp prod k 0 T mathcal N left mathbf z k mathbf H k hat mathbf x k mid k 1 mathbf S k right end aligned nbsp i e a product of Gaussian densities each corresponding to the density of one observation zk under the current filtering distribution H k x k k 1 S k displaystyle mathbf H k hat mathbf x k mid k 1 mathbf S k nbsp This can easily be computed as a simple recursive update however to avoid numeric underflow in a practical implementation it is usually desirable to compute the log marginal likelihood ℓ log p z displaystyle ell log p mathbf z nbsp instead Adopting the convention ℓ 1 0 displaystyle ell 1 0 nbsp this can be done via the recursive update rule ℓ k ℓ k 1 1 2 y k T S k 1 y k log S k d y log 2 p displaystyle ell k ell k 1 frac 1 2 left tilde mathbf y k textsf T mathbf S k 1 tilde mathbf y k log left mathbf S k right d y log 2 pi right nbsp where d y displaystyle d y nbsp is the dimension of the measurement vector 52 An important application where such a log likelihood of the observations given the filter parameters is used is multi target tracking For example consider an object tracking scenario where a stream of observations is the input however it is unknown how many objects are in the scene or the number of objects is known but is greater than one For such a scenario it can be unknown apriori which observations measurements were generated by which object A multiple hypothesis tracker MHT typically will form different track association hypotheses where each hypothesis can be considered as a Kalman filter for the linear Gaussian case with a specific set of parameters associated with the hypothesized object Thus it is important to compute the likelihood of the observations for the different hypotheses under consideration such that the most likely one can be found Information filter editThis section needs additional citations for verification Please help improve this article by adding citations to reliable sources in this section Unsourced material may be challenged and removed April 2016 Learn how and when to remove this template message In cases where the dimension of the observation vector y is bigger than the dimension of the state space vector x the information filter can avoid the inversion of a bigger matrix in the Kalman gain calculation at the price of inverting a smaller matrix in the prediction step thus saving computing time In the information filter or inverse covariance filter the estimated covariance and estimated state are replaced by the information matrix and information vector respectively These are defined as Y k k P k k 1 y k k P k k 1 x k k displaystyle begin aligned mathbf Y k mid k amp mathbf P k mid k 1 hat mathbf y k mid k amp mathbf P k mid k 1 hat mathbf x k mid k end aligned nbsp Similarly the predicted covariance and state have equivalent information forms defined as Y k k 1 P k k 1 1 y k k 1 P k k 1 1 x k k 1 displaystyle begin aligned mathbf Y k mid k 1 amp mathbf P k mid k 1 1 hat mathbf y k mid k 1 amp mathbf P k mid k 1 1 hat mathbf x k mid k 1 end aligned nbsp as have the measurement covariance and measurement vector which are defined as I k H k T R k 1 H k i k H k T R k 1 z k displaystyle begin aligned mathbf I k amp mathbf H k textsf T mathbf R k 1 mathbf H k mathbf i k amp mathbf H k textsf T mathbf R k 1 mathbf z k end aligned nbsp The information update now becomes a trivial sum 53 Y k k Y k k 1 I k y k k y k k 1 i k displaystyle begin aligned mathbf Y k mid k amp mathbf Y k mid k 1 mathbf I k hat mathbf y k mid k amp hat mathbf y k mid k 1 mathbf i k end aligned nbsp The main advantage of the information filter is that N measurements can be filtered at each time step simply by summing their information matrices and vectors Y k k Y k k 1 j 1 N I k j y k k y k k 1 j 1 N i k j displaystyle begin aligned mathbf Y k mid k amp mathbf Y k mid k 1 sum j 1 N mathbf I k j hat mathbf y k mid k amp hat mathbf y k mid k 1 sum j 1 N mathbf i k j end aligned nbsp To predict the information filter the information matrix and vector can be converted back to their state space equivalents or alternatively the information space prediction can be used 53 M k F k 1 T Y k 1 k 1 F k 1 C k M k M k Q k 1 1 L k I C k Y k k 1 L k M k C k Q k 1 C k T y k k 1 L k F k, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.