Next Article in Journal
Method for Localization Aerial Target in AC Electric Field Based on Sensor Circular Array
Previous Article in Journal
Continuous Vital Monitoring During Sleep and Light Activity Using Carbon-Black Elastomer Sensors
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Extended Kalman Filter with Reduced Computational Demands for Systems with Non-Linear Measurement Models

Military University of Technology, ul. gen. S. Kaliskiego 2, 00-908 Warszawa, Poland
Sensors 2020, 20(6), 1584; https://doi.org/10.3390/s20061584
Submission received: 24 January 2020 / Revised: 9 March 2020 / Accepted: 10 March 2020 / Published: 12 March 2020
(This article belongs to the Section Remote Sensors)

Abstract

:
The paper presents a method of computational complexity reduction in Extended Kalman Filters dedicated for systems with non-linear measurement models. Extended Kalman filters are commonly used in radio-location and radio-navigation for estimating an object’s position and other parameters of motion, based on measurements, which are non-linearly related to the object’s position. This non-linearity forces designers to use non-linear filters, such as the Extended Kalman Filter mentioned, where linearization of the system’s model is performed in every run of the filter’s loop. The linearization, consisting of calculating Jacobian matrices for non-linear functions in the dynamics and/or observation models, significantly increases the number of operations in comparison to the linear Kalman filter. The method proposed in this paper consists of analyzing a variability of Jacobians and performing the model linearization only when expected changes of those Jacobians exceed a preset threshold. With a properly chosen threshold value, the proposed filter modification leads to a significant reduction of its computational burden and does not noticeably increase its estimation errors. The paper describes a practical simulation-based method of determining the threshold. The accuracy of the filter for various threshold values was tested for simplified models of radar systems.

1. Introduction

In radio-electronic systems, especially radio-location or radio-navigation systems, a common issue is estimating the position and other parameters of motion of an observed or navigated object [1]. These quantities, treated as elements of a state vector [2], are calculated based on measurements of distances, differences of distances, sums of distances, angles, velocities etc., acquired with the use of various sensors. In most cases, the measured quantities are non-linearly related to the object’s position, and this relationship can be written as a non-linear equation called the measurement model [1,2,3,4,5,6].
Algorithms of object position estimation used in radiolocation and radio-navigation systems are often model-based, which implies the use of a dynamic model to describe the relationship between the future and the current state vector values [2], and enables a future state prediction. The dynamics model equation, similar to the measurement model equation, is non-linear in many radio-electronic systems [4,7].
Due to the common non-linearity of radio-electronic system models, classical linear Kalman filters [1,2] cannot usually be applied for their state estimation and, instead, non-linear filters such as a Linearized Kalman Filter (LKF) [2], an Extended Kalman Filter (EKF) [2,8], an Unscented Kalman Filter - UKF [9], or a Particle Filter (PF) [10,11] are used. Due to its simplicity and versatility, one of the most frequently applied algorithms is the Extended Kalman Filter.
In every computational step of the EKF algorithm, the non-linear equations of the system model are linearized. If both the dynamics and the observation model are non-linear, Jacobians of both non-linear functions must be calculated [2,4]. In many systems, however, only the observation model is non-linear, and then only one Jacobi matrix must be calculated [1,8]. In both considered cases, the additional model linearization performed in every run of the main loop of the algorithm means an increased computational burden in comparison to a linear filter.
To accelerate calculations on platforms with limited computational resources, or to reduce the energy consumption, in engineering practice, various methods of a computational burden reduction were sought. With this aim in mind, the information Kalman filter and sequential Kalman filter were proposed [2]. In the case of the EKFs, in the literature, one can also find solutions consisting of dividing the total system model into linear and non-linear parts, which can be applied in the case of partially non-linear models [12]. In Reference [13], an efficient and robust method of numerical integration of a non-linear continuous dynamics model equation is proposed and it is claimed to be more than two orders of magnitude faster than the method used in standard EKFs. This idea, however, is applicable for continuous-discrete systems and is not useful in fully discrete systems as considered in this paper. A good tutorial on existing code optimization methods that can be used for computational complexity reduction in various Kalman filter extensions is given in Reference [14]. The described methods make use of existing linearities in non-linear system’s models, conditional linearities, special forms of system’s matrices, e.g., their block diagonalities, alternative filter’s formulations, etc. A problem of dealing with real-time constraints in EKF and UKF implementations on low processing power platforms, like microcontrollers, is discussed in Reference [15]. To save the computational cost, the authors suggest rewriting the filter’s equations as a couple of simpler scalar equations and exploiting the sparsity of matrices. Using look-up tables instead of traditional Kalman gains calculations in tracking loops in Global Navigation Satellite Systems (GNSS) receivers is presented in Reference [16], but the utility of this method has been demonstrated in linear filters only. None of the mentioned sources describes a method similar to the one presented in this paper.
The method of computational burden reduction proposed in this paper consists of analyzing a variability of a Jacobi matrix of a non-linear transformation in the measurement model and performing the model linearization only if the expected changes of the elements of this matrix exceed a predefined threshold. As a result, the Jacobian is calculated only in selected steps of the main loop of the EKF algorithm, and the times between its updates are variable and depend on the variability of this matrix estimated by the filter itself. Therefore, the considered algorithm can be classified as an adaptive filter. With appropriately chosen threshold values, the proposed solution significantly reduces computational demands and, at the same time, only slightly reduces estimation accuracy.
The layout of the further parts of this paper is as follows: the classical extended Kalman filter is presented in Section 2, and its modified version aimed at reducing the computational burden is described in Section 3. Section 4 contains a description of a simple radiolocation systems with linear dynamics models and non-linear measurement models, and gives the equations necessary for the implementation of the proposed adaptive solution. The paper also includes selected results of simulations and a practical simulation-based method of determining the threshold in Section 5. Conclusions are provided in Section 6.

2. Extended Kalman Filter

This paper considers a simpler case of a system with a linear dynamics model and a non-linear measurement model. However, it is often met in radio-location or radio-navigation practice. Such a model is given by the following equations [2,8,10].
x ( k + 1 ) = Φ ( k + 1 , k ) x ( k ) + w ( k ) ,
z ( k ) = h [ x ( k ) ] + ε ( k ) ,
where: x – state vector, Φ – transition matrix, w – vector of process disturbances, z – measurement vector, h(*) – non-linear measurement function, ε – vector of measurement errors, k – index of time t = k T , T – period between two discrete time steps. The EKF algorithm for such a system is shown in Figure 1.
The EKF algorithm contains the following steps:
  • Initialization of the estimated state vector x ^ ( 0 | 0 ) and the covariance matrix of filtration errors P ( 0 | 0 ) ,
  • Prediction of the state vector x ^ ( k + 1 | k ) and calculation of the covariance matrix of prediction errors P ( k + 1 | k ) ,
  • Calculation of the observation matrix H ( k + 1 ) which is a Jacobian of the non-linear measurement function h(*),
  • Acquisition of a new measurement vector z ( k + 1 ) ,
  • Calculation of the Kalman gains matrix K ( k + 1 ) and correction of the prediction results, i.e., calculation of the updated state vector x ^ ( k + 1 | k + 1 ) and the covariance matrix of filtration errors P ( k + 1 | k + 1 ) ,
  • Reporting of the state vector estimate x ^ ( k + 1 | k + 1 ) ,
An additional step of the EKF in comparison to a linear Kalman filter can be seen in step (3), where a Jacobian matrix of the function h(*) is calculated.
The Q and R matrices in the filter’s equations represent a covariance matrix of process disturbances w and a covariance matrix of the measurement noises ε , respectively [2].

3. Extended Kalman Filter with Reduced Computational Demands

Assuming that the state vector x is composed of n elements and the measurement vector z contains m simultaneously acquired measurements, Equation (2) can be presented in more detail as follows, where the k index was omitted for simplicity.
[ z 1 z 2 z m ] = [ h 1 ( x 1 , x 2 , x n ) h 2 ( x 1 , x 2 , x n ) h m ( x 1 , x 2 , x n ) ] + [ ε 1 ε 2 ε m ] .
Thus, a calculation of the Jacobian for the h(*) function requires calculating numerical values of m × n partial derivatives, which compose the H matrix.
H = h x = [ H 11 H 12 H 1 n H 21 H 22 H 2 n H m 1 H m 2 H m n ] = [ h 1 ( x 1 , x 2 , x n ) x 1 h 1 ( x 1 , x 2 , x n ) x 2 h 1 ( x 1 , x 2 , x n ) x n h 2 ( x 1 , x 2 , x n ) x 1 h 2 ( x 1 , x 2 , x n ) x 2 h 2 ( x 1 , x 2 , x n ) x n h m ( x 1 , x 2 , x n ) x 1 h m ( x 1 , x 2 , x n ) x 2 h m ( x 1 , x 2 , x n ) x n ] .
In practice, the H matrix elements often change only very slightly between successive time steps, and, therefore, their updating in each step k results in unnecessary computational burden without significantly improving the filter’s estimation accuracy. In such cases, updating the H matrix elements only in selected steps of the algorithm loop may be considered. The values of derivatives H i j , however, display various sensitivities for changes of the state vector elements. Thus, without a priori knowledge of the estimated state vector x ^ trajectory, one cannot decide how often the H matrix should be updated. In this paper, an adaptive approach is proposed, consisting of determining the H matrix update times based on the expected changes of the partial derivatives H i j from their last actualization.
A differential d H i j , which is a function of the estimated state vector x ^ , can be written as follows.
d H i j = H i j x d x ^ = [ H i j x 1 H i j x 2 H i j x n ] [ d x ^ 1 d x ^ 2 d x ^ n ] ,
In addition, by approximating it with a finite increment, the following is obtained.
Δ H i j H i j x Δ x ^ = [ H i j x 1 H i j x 2 H i j x n ] [ Δ x ^ 1 Δ x ^ 2 Δ x ^ n ] .
An expected (linearly extrapolated) relative change of the H i j element from the last update realized at the time step l until the current time step k + 1 can be calculated as follows.
Δ H i j ( k + 1 , l ) H i j ( l ) [ H i j x | x ^ ( l | l 1 ) / H i j ( l ) ] Δ x ^ = M i j ( l ) Δ x ^ = M i j ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] .
In the proposed algorithm, the H matrix is calculated for the first time at the time step k = 1 . After its first calculation and each subsequent update at the time step l , the M i j ( l ) coefficient and the predicted state vector x ^ ( l | l 1 ) are stored. In the steps following the H matrix update, monitoring variables | M i j ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] | are calculated and compared with a predefined threshold   ρ . If any of such variables exceeds the threshold   ρ , the H i j element of H and a new value of M i j are calculated. The proposed solution eliminates the necessity of calculating the H matrix as a whole and, in every step of the EKF algorithm loop, and therefore it may reduce the number of performed arithmetic operations.
The presented EKF modification reduces the computational load related to the calculation of the H matrix, but it adds additional calculations of M i j ( l ) coefficients after every H matrix update and comparisons of monitoring variables | M i j ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] | with the threshold ρ at each time step k . With a properly chosen threshold, however, this additional computational overhead is smaller than the obtained savings. This is due to the fact that calculating M i j or H i j is of similar complexity, but, in a standard EKF, H i j parameters are calculated at every step k , whereas the coefficients M i j can be calculated much less frequently. The operation of calculating monitoring variables and their comparison with the threshold ρ is admittedly realized at each time step k , but it is a simple operation that does not increase the computational burden significantly.
A block diagram of the modified EKF algorithm is shown in Figure 2. The step numbered as 3 in this algorithm replaces the calculation of the total H matrix at every step k of the standard algorithm from Figure 1. The monitoring variables named as m v i j are initially set to large values M V > ρ to ensure that the H matrix is calculated for the first time at the time step k = 1 . Their values are recalculated at every step k in a block numbered as 6.

4. Examples of Application

4.1. Range-Only Tracking in 2D Radar

The performance of the proposed algorithm was first demonstrated for a simple radar system, graphically presented in Figure 3. The considerations were limited to a 2D case where both the radar and the observed object are in the OXY frame of reference. It is assumed that the object moves in one direction only, along the OX axis, and only ranges R between the radar and the object are measured. The coordinates of the radar are ( X 0 , Y 0 ) and those of the object are ( x , y ) . Such a simple model is enough to present all the important features of the proposed modified EKF algorithm without focusing on the intricacies of models of more realistic radar systems.
A linear uniform motion of the object with disturbances (random acceleration) was assumed. Such a model, called a PV (Position-Velocity) model in the literature [2], can be formulated as follows for an object moving on the OX axis only.
[ x ( k + 1 ) v x ( k + 1 ) ] = [ 1 T 0 1 ]   [ x ( k ) v x ( k ) ] + [ w x ( k ) w v x ( k ) ] ,
where w x and w v x are discrete disturbances acting on the object’s position and velocity, respectively.
It is, thus, a linear model, conforming with the general dynamics model Equation (1), where the state vector x , the transition matrix Φ , and the covariance matrix of process disturbances Q are as follows [2].
x = [ x v x ] ,   Φ = [ 1 T 0 1 ] ,   Q = [ S v x T 3 3 S v x T 2 2 S v x T 2 2 S v x T ] ,
where S v x represents the power spectral density of continuous disturbances of the object’s motion.
The measurement model in the considered system is, on the other hand, non-linear, and can be written as follows, which conforms with the general measurement model of Equation (2).
R ( k ) = h ( x ( k ) , v x ( k ) ) + ε R ( k ) = ( x ( k ) X 0 ) 2 + Y 0 2 + ε R ( k ) ,
where ε R represents radar range measurement errors.
The measurement matrix H , calculated according to Equation (4) is as follows, where the k index was omitted for simplicity.
H = [ H 11 H 12 ] = [ h ( x , v x ) x h ( x , v x ) v x ] = [ x X 0 ( x X 0 ) 2 + Y 0 2 0 ] .
Since the measurement vector contains only one variable R, the covariance matrix of measurement errors is 1 × 1 and represents the variance of radar-object range measurements.
R = σ R 2 .
The model presented above is enough to implement a standard algorithm of an extended Kalman filter. For the sake of its adaptive version, only a single scalar coefficient M 11 must be derived because only the H 11 element of the H matrix is non-zero. Moreover, it depends only on the first element x of the state vector x , which simplifies further calculations.
H 11 x = x ( x X 0 ( x X 0 ) 2 + Y 0 2 ) =   Y 0 2 [ ( x X 0 ) 2 + Y 0 2 ] 3 / 2 ,
M 11 ( l ) = H 11 x | x ^ ( l | l 1 ) / H 11 ( l ) = Y 0 2 [ x ^ ( l | l 1 ) X 0 ] [ ( x ^ ( l | l 1 ) X 0 ) 2 + Y 0 2 ] .
During the adaptive filter’s operation, at every time step k , the following condition is checked.
| M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] | > ρ ,
Only if it is met, an updated value of H 11 is calculated.
When comparing numbers of operations and times of calculations in the standard EKF and in its modified version, their differences can be focused on. In the standard EKF, a calculation of H 11 is performed in every step k . Such a single calculation involves three additions, two multiplications, one division, and one calculation of the sqrt() function. In the proposed adaptive EKF, there is only one comparison, one addition, and one multiplication in every step k as well as six additions, six multiplications, two divisions, and one calculation of the sqrt() function in every step l . Therefore, the times of calculations of unique fragments of the measurement matrix updates for both filters can be expressed as follows.
t u p E K F 1 = k ( t a d d · n a d d 1 + t m u l · n m u l 1 + t d i v · n d i v 1 + t s q r t · n s q r t 1 )
t u p E K F 2 = k ( t c o m p · n c o m p 2 +   t a d d · n a d d 2 + t m u l · n m u l 2 ) + + l ( t a d d · n a d d l + t m u l · n m u l l + t d i v · n d i v l + t s q r t · n s q r t l )
where: t u p E K F 1 , t u p E K F 2 – total times of calculations of unique fragments of the measurement matrix updates in the standard EKF and in the modified EKF, respectively, t c o m p , t a d d , t m u l , t d i v , t s q r t – times of single operations of comparison, addition, multiplication, division, and square root calculations, n a d d 1 , n m u l 1 , n d i v 1 , n s q r t 1 – number of operations of addition, multiplication, division, and square-root in the standard EKF, n c o m p 2 , n a d d 2 , n m u l 2 – number of operations of comparison, addition, and multiplication realized in all steps k in the modified EKF, n a d d l , n m u l l , n d i v l , n s q r t l – number of operations of addition, multiplication, division, and square-root realized in the modified EKF in steps l only.

4.2. Angle-Only Tracking in 2D Radar

To demonstrate a possibility of using the proposed algorithm for a system with a different type of non-linearity, we reconsider the simple radar system presented in Figure 3. However, we assume that now only angles ϕ are measured. The previous assumption with respect to the radar location and the motion of the object remain unchanged.
The measurement model in this version of the system is as follows.
ϕ ( k ) = h ( x ( k ) , v x ( k ) ) + ε ϕ ( k ) = atan 2 ( Y 0 , x ( k ) X 0 ) + ε ϕ ( k ) ,
where   ε ϕ represents radar angle measurement errors.
The measurement matrix H , calculated according to Equation (4), is as follows.
H = [ H 11 H 12 ] = [ h ( x , v x ) x h ( x , v x ) v x ] = [ Y 0 ( x X 0 ) 2 + Y 0 2 0 ] ,
The covariance matrix of measurement errors is 1 × 1 and contains the variance of angle measurements.
R = σ ϕ 2 .
For the sake of the adaptive filter, similarly to the range-only tracking problem, only a single scalar coefficient M 11 must be derived because only the H 11 element of the H matrix is non-zero.
H 11 x = x ( Y 0 ( x X 0 ) 2 + Y 0 2 ) =   2 ( x X 0 ) Y 0 [ ( x X 0 ) 2 + Y 0 2 ] 2
M 11 ( l ) = H 11 x | x ^ ( l | l 1 ) / H 11 ( l ) = 2 [ x ^ ( l | l 1 ) X 0 ] [ x ^ ( l | l 1 ) X 0 ] 2 + Y 0 2
The condition for updating the value of H 11 is the same as the previous one and it is given by Equation (15).
In the standard EKF for the considered system, a calculation of H 11 is performed in every step k and involves two additions, two multiplications, and one division. In the proposed adaptive EKF, there is only one comparison, one addition, and one multiplication in every step k , but, additionally, three additions, three multiplications, and one division in every step l . Therefore, the times of calculations of unique fragments of the measurement matrix updates for both filters can be expressed as follows.
t u p E K F 1 = k ( t a d d · n a d d 1 + t m u l · n m u l 1 + t d i v · n d i v 1 )
t u p E K F 2 = k ( t c o m p · n c o m p 2 +   t a d d · n a d d 2 + t m u l · n m u l 2 ) + + l ( t a d d · n a d d l + t m u l · n m u l l + t d i v · n d i v l )
where: t u p E K F 1 , t u p E K F 2 – total times of calculations of unique fragments of the measurement matrix updates in the standard EKF and in the modified EKF, respectively, t c o m p , t a d d , t m u l , t d i v – times of single operations of comparison, addition, multiplication, and division, n a d d 1 , n m u l 1 , n d i v 1 – number of operations of addition, multiplication, and division in the standard EKF, n c o m p 2 , n a d d 2 , n m u l 2 – number of operations of comparison, addition, and multiplication realized in all steps k in the modified EKF, and n a d d l , n m u l l , n d i v l – number of operations of addition, multiplication, and division realized in the modified EKF in steps l only.

4.3. Tracking in 2D Radar with Range and Angle Measurements

To provide a more general and practical example of the filter’s use, in this subsection, a 2D radar system processing both range and angle measurements is analyzed. The considered system is shown in Figure 4. It is assumed that the radar is located at the origin of the OXY frame of reference. The observed object can move in two directions, and the radar provides ranges R and angles ϕ .
A two-dimensional PV motion model for this system can be formulated as follows
[ x ( k + 1 ) v x ( k + 1 ) y ( k + 1 ) v y ( k + 1 ) ] = [ 1 0 0 0 T 1 0 0 0 0 1 0 0 0 T 1 ] · [ x ( k ) v x ( k ) y ( k ) v y ( k ) ] + [ w x ( k ) w v x ( k ) w y ( k ) w v y ( k ) ] ,
where w x , w v x , w y , and w v y are discrete disturbances acting on the object’s position and velocity, respectively.
The state vector x , the transition matrix Φ , and the covariance matrix of process disturbances Q are as follows.
x = [ x v x y v y ] ,   Φ = [ 1 0 0 0 T 1 0 0 0 0 1 0 0 0 T 1 ] Q = [ S v x T 3 3 S v x T 2 2 0 0 S v x T 2 2 S v x T 0 0 0 0 S v y T 3 3 S v y T 2 2 0 0 S v y T 2 2 S v y T ] ,
where S v x and S v y represent the power spectral densities of disturbances of the object’s motion.
The measurement model in the considered system is as follows.
[ R ( k ) ϕ ( k ) ] = [ h 1 ( x ( k ) , v x ( k ) , y ( k ) , v x ( k ) ) h 2 ( x ( k ) , v x ( k ) , y ( k ) , v x ( k ) ) ] + [ v R ( k ) v ϕ ( k ) ] = [ x ( k ) 2 + y ( k ) 2 atan 2 ( y ( k ) , x ( k ) ) ] + [ v R ( k ) v ϕ ( k ) ] ,
where v R and v ϕ represent radar range and angle measurement errors.
The measurement matrix H , calculated according to Equation (4), is as follows, where the k index was omitted for simplicity.
H = [ H 11 H 21 H 12 H 22 H 13 H 23 H 14 H 24 ] = [ h 1 ( x , v x , y , v y ) x h 2 ( x , v x , y , v y ) x h 1 ( x , v x , y , v y ) v x h 2 ( x , v x , y , v y ) v x h 1 ( x , v x , y , v y ) y h 2 ( x , v x , y , v y ) y h 1 ( x , v x , y , v y ) v y h 2 ( x , v x , y , v y ) v y ] [ x x 2 + y 2 y x 2 + y 2 0 0 y x 2 + y 2 x x 2 + y 2 0 0 ] .
The covariance matrix of measurement errors contains the variances of range and angle measurements.
R = [ σ R 2 0 0 σ ϕ 2 ] .
The coefficients M i j ( l ) must be calculated according to Equation (7) for the non-zero H matrix elements, and, since these elements are functions of two variables x and y , the mentioned coefficients are vectors rather than scalars. The way of calculation of the M i j ( l ) coefficients is explained below.
H 11 x = x ( x x 2 + y 2 ) =   y 2 [ x 2 + y 2 ] 3 / 2 ,
H 11 y = y ( x x 2 + y 2 ) =   x y [ x 2 + y 2 ] 3 / 2 ,
H 13 x = x ( y x 2 + y 2 ) =   x y [ x 2 + y 2 ] 3 / 2 ,
H 13 y = y ( y x 2 + y 2 ) =   x 2 [ x 2 + y 2 ] 3 / 2 ,
H 21 x = x ( y x 2 + y 2 ) =   2 x y ( x 2 + y 2 ) 2 ,
H 21 y = y ( y x 2 + y 2 ) =   y 2 x 2 ( x 2 + y 2 ) 2 ,
H 23 x = x ( x x 2 + y 2 ) =   y 2 x 2 ( x 2 + y 2 ) 2 ,
H 23 y = y ( x x 2 + y 2 ) =   2 x y ( x 2 + y 2 ) 2 ,
M 11 ( l ) = [ y ^ ( l | l 1 ) 2 x ^ ( l | l 1 ) [ x ^ ( l | l 1 ) 2 + y ^ ( l | l 1 ) 2 ] 0 y ^ ( l | l 1 ) x ^ ( l | l 1 ) 2 + y ^ ( l | l 1 ) 2 0 ] ,
M 13 ( l ) = [ x ^ ( l | l 1 ) x ^ ( l | l 1 ) 2 + y ^ ( l | l 1 ) 2 0 x ^ ( l | l 1 ) 2 y ^ ( l | l 1 ) [ x ^ ( l | l 1 ) 2 + y ^ ( l | l 1 ) 2 ] 0 ] ,
M 21 ( l ) = [ 2 x ^ ( l | l 1 ) x ^ ( l | l 1 ) 2 + y ^ ( l | l 1 ) 2 0 x ^ ( l | l 1 ) 2 y ^ ( l | l 1 ) 2 y ^ ( l | l 1 ) [ x ^ ( l | l 1 ) 2 + y ^ ( l | l 1 ) 2 ] 0 ] ,
M 23 ( l ) = [ x ^ ( l | l 1 ) 2 y ^ ( l | l 1 ) 2 y ^ ( l | l 1 ) [ x ^ ( l | l 1 ) 2 + y ^ ( l | l 1 ) 2 ] 0 2 x ^ ( l | l 1 ) x ^ ( l | l 1 ) 2 + y ^ ( l | l 1 ) 2 0 ] .
The following four conditions are checked at every time step k during the filter’s operation.
| M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] | > ρ 11 ,
| M 13 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] | > ρ 13 ,
| M 21 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] | > ρ 21 ,
| M 23 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] | > ρ 23 ,
From Equations (38)–(41), it is visible that the above conditions can be reduced to simpler scalar inequalities. The respective element of the H matrix, i.e., H 11 ,   H 13 , H 21 , or H 23 is updated only if one of the above conditions is met, i.e., one of the thresholds ρ 11 , ρ 13 , ρ 21 , or ρ 23 is exceeded.

5. Results of Algorithm Testing

The proposed modified EKF algorithm was implemented and tested for all examples of systems described in Section 4 and the obtained results are shown in subsequent subsections.

5.1. Range-Only Tracking Radar Simulations

The results presented in this subsection refer to the EKF described in Section 4.1, which was designed for the 2D radar with range-only measurements available. The following conditions were assumed for these simulations.
  • Simulation time of 100 seconds,
  • Period of measurements and filter date T = 1   s ,
  • Radar coordinates X 0 = 5000   m , Y 0 = 1000   m ,
  • Object moving in the positive direction of the OX axis, with the initial position, velocity, and acceleration equal: x ( 0 ) = 1000   m , v x ( 0 ) = 100   m s , a x ( 0 ) = 0   m s 2 , respectively,
  • Power spectral density of the white noise of the motion disturbances S v x = 0.1   m 2 s 3 ,
  • Standard deviation of range measurements σ R = 10   m .
In the conducted tests of the algorithm, the threshold ρ was changed in the range from 0 to 0.1 with a step 0.01, and its influence on the number of the measurement matrix H updates and on the root-mean-squared (RMS) estimation error of the x coordinate of the object’s position. Since the results for various runs of simulations are variable due to various realizations of process disturbances and measurement errors, their values were averaged for 100 thousand simulations for each considered threshold value. The obtained values are gathered in Table 1. Due to the mentioned averaging, the number of H matrix updates in this table is not an integer number.
The results from Table 1 are also graphically presented in Figure 5 and Figure 6.
In order to verify what is the influence of the intensity of the measurement errors on the optimal threshold value, the following experiment was conducted. For two different standard deviations of range errors, i.e., σ R   = 1   m and σ R   = 100   m the threshold ρ was changed in the range from 0 to 0.8 with a step 0.01, and its influence on the number of the measurement matrix H updates and on the root-mean-squared estimation error of the x coordinate of the object’s position were registered. The respective results are gathered in Table 2 and Table 3. Even for significantly (an order of magnitude) stronger or weaker measurement noises, the same threshold ρ = 0.06 gives the best results. Thus, there is no need for adaptive threshold changes in the modified EKF even if one expects that the noise level may be variable.
Computation loads and times for arithmetic operations are largely dependent on the processor used and the implementation of functions in the applied library. However, it is generally assumed that comparisons and additions are the least computationally expensive, and more demanding, in increasing order, are multiplications, divisions, and calculations of functions, such as the square-root or trigonometric functions [17]. Assume for illustrative purposes the times of elementary operations given in Reference [17] for a specific computer, namely the IBM 360 Model 67-1. They are 2.7   μ s for addition, 4.1   μ s for multiplication, 6.6   μ s for division, and 60   μ s for the square root, respectively. Assume that the time for comparison equals that of adding two variables. The times of the calculations of unique fragments of the measurement matrix updates in the standard EKF and in the modified EKF, calculated according to Equations (16) and (17) for the considered example, are gathered in Table 4.
The results presented in Table 4 show significant savings in terms of processing time for the adopted assumptions, even for small thresholds ρ where the H matrix updates are still frequently performed.
In a further step of algorithm testing, for four selected thresholds ρ , values of the H 11 element of the H matrix, values of the monitoring variable | M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] | , and the number of H matrix updates since the beginning of a single simulation were calculated and are presented in Figure 7, Figure 8, Figure 9 and Figure 10.
In the presented figures, one can see that the number of H matrix updates decreases with the increasing threshold ρ value.
The case ρ = 0 is equivalent to a standard EKF with the measurement matrix update taking place in every step k , whereas the case from Figure 10, obtained for ρ = 0.06 , represents a situation when the position estimation accuracy is still almost the same as in a standard EKF, but the filter’s computational demands are significantly reduced.
With increasing threshold value, the number of H matrix updates decreases, but their uneven distribution in time is worth noting. The largest density of actualizations takes place in a portion of the object’s trajectory, where the cosine of the ϕ angle, under which the object is seen by the radar, changes most rapidly. Its quickest changes are in the central part of the assumed flight trajectory, and they result from the fact that
H 11 = x X 0 ( x X 0 ) 2 + Y 0 2 = cos ( ϕ )
changes most rapidly near ϕ = 90 o .
This notion leads to establishing a practical method for choosing the threshold. The threshold ρ should be chosen for a specific radioelectronic system, based on simulations or on analytical considerations. One can considered “the worst case” scenario where the H matrix elements change the quickest. In case of a radar system, with known minimal detection range R m i n , the quickest H matrix updates are required for an object passing the radar in such a small distance, as presented in Figure 11, and the threshold ρ can be established for this specific case only, looking for its maximal value, but still ensuring acceptable estimation accuracy.
For better visualization of the filter’s behavior, the presented example was purposefully chosen in such a way that the H matrix changes significantly in the short time of simulation. In most radar and radio-navigation systems, these changes would be much slower. For example, in the Kalman filter of a Global Positioning System (GPS) receiver, the H matrix contains direction cosines from the user to the visible GPS satellites [2]. Since the angles under which the satellites are seen from a user’s location remain almost unchanged in short periods of time due to the very large distances between the user and the satellites, the H matrix elements would be almost constant for relatively long periods. In such a filter, the H matrix updates would be performed very rarely in comparison to the radar system example that was considered in this paper. Therefore, in real radioelectronic systems, the proposed EKF modification could lead to an even more significant reduction of its computational demands.

5.2. Angle-Only Tracking Radar Simulations

The results presented in this subsection of the paper refer to the EKF described in Section 4.2 designed for the 2D radar with angle-only measurements available. The conditions adopted for these simulations were the same as for the range-only tracking radar, with a single difference, consisting of assuming a standard deviation of angle measurements σ ϕ = 0.1 ° instead of a standard deviation of range measurements.
In the first test of the algorithm, the threshold ρ was changed in the range from 0 to 0.1 with a step 0.02 and from 0.1 to 0.2 with a step 0.05. Its influence on the number of the measurement matrix H updates and on the root-mean-squared estimation error of the x coordinate of the object’s position was analyzed and gathered in Table 5. The decreasing number of matrix updates does not visibly affect the estimation error.
The times of the calculations of unique fragments of the measurement matrix updates in the standard EKF and in the modified EKF, calculated according to Equations (23) and (24) for the considered example, are gathered in Table 6.
Similar to the range-only tracking, in this case, computational savings can be obtained. However, they are not as large as previously seen. This is due to a fact that, in the range-only tracking problem, the H 11 element of the H matrix contained a time-consuming square root operation and its omitting in some steps immediately resulted in a large decrease of the processing time. In the angle-only tracking, the H 11 element is a simpler function that can be decomposed into a few additions, multiplications, and divisions. Thus, it is not computationally expensive. The savings are still possible only due to limiting the number of the mentioned elementary operations.
Based on the already presented examples, one can conclude that the proposed modified filter would be most effective in problems where the H matrix elements are computationally expensive so that the obtained savings due to less frequent H matrix updates are much larger than the additional computational burden due to calculations of monitoring variables and their comparisons with a threshold. As the EKFs used in GPS receivers process pseudoranges closely related to ranges, and typical radars process both ranges and angles, the H matrix elements in these filters contain time-consuming operations, like square roots. Therefore, the proposed filter may be useful in these important groups of applications.
For two extreme thresholds ρ , values of the H 11 element of the H matrix, values of the monitoring variable | M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] | , and the number of H matrix updates since the beginning of a single simulation were calculated and are presented in Figure 12, Figure 13 and Figure 14.
As can be seen in Figure 12, the H 11 element of the H matrix reaches its minimum at step 41 and then very rapidly changes its direction. This results from a very small distance between the radar and the object in the considered case. It should be mentioned that this is not a typical situation in real systems where EKFs are used, as the EKF itself is dedicated for systems with relatively benign non-linearities [10]. In strongly non-linear systems, Unscented Kalman Filters or Particle Filters are typically applied [9,11].
However, the effects observed in the considered scenario give some insight into the algorithm’s behavior. If the value of H 11 derivative is calculated around step k = 40 , it will be close to zero and, consequently, the variable M 11 will also be close to zero. In such a case, the proposed algorithm may be too sluggish, and it will wait long with the next update of the H matrix. This effect can be observed in Figure 13 obtained for a large ρ = 0.2 .
If rapid changes of the H matrix elements occur in a system for which the proposed algorithm is designed, one can consider forcing the update of the H matrix not only based on the observation of the monitoring variables, but also a predefined number of steps, whichever happens first. The results obtained for the above described filter but with a forced H matrix update every 10 steps are shown in Figure 14. It is visible that such a filter can effectively work in high-response conditions and deal with its sluggish behavior when the H matrix elements reach their extreme values and their derivatives are close to zeroes.

5.3. 2D Radar with Range and Angle Measurement Simulations

The results presented in this subsection refer to the EKF described in Section 4.3, processing both range and angle measurements in a 2D radar. The following conditions were assumed for these simulations.
  • Simulation time 100 s,
  • Period of measurements and filter update T = 1   s ,
  • Radar coordinates X 0 = 0   m , Y 0 = 0   m ,
  • Object moving from the initial position x ( 0 ) = 5000   m , y ( 0 ) = 5000   m , with the initial velocity v x ( 0 ) = 100   m s , v y ( 0 ) = 10   m s , and the initial acceleration a x ( 0 ) = a y ( 0 ) = 0   m s 2 ,
  • Power spectral density of the white noise of the motion disturbances S v x = S v y = 0.1   m 2 s 3 ,
  • Standard deviation of range measurements σ R = 100   m ,
  • Standard deviation of angle measurements σ ϕ = 1 ° .
To demonstrate the results obtained with a standard EKF and the proposed modified filter version, a trajectory of a moving object and pairs of range-angle measurements were generated. In the modified Kalman filter, a threshold was set to ρ = 0.06 . The object trajectory estimated by both filters is compared in Figure 13. It is visible that, despite the limited number of the H matrix updates, the results of estimation from the modified Kalman filter are similar to those from a standard EKF.
The values of H 11 , H 13 , H 21 , and H 23 elements of the H matrix, values of respective monitoring variables, and the number of H 11 , H 13 , H 21 , and H 23 elements’ updates since the beginning of the simulation are presented in Figure 15, Figure 16, Figure 17, Figure 18 and Figure 19.

6. Conclusions

The paper presented a classical Extended Kalman Filter and its modified version with a reduced computational burden due to the omission of unnecessary H matrix updates. The effects of the proposed modification were analyzed for a simple radar system model. Two simple cases of range-only and angle-only tracking were analyzed in detail and a more general and practical example of a 2D radar system processing both range and angle measurements was demonstrated.
In the case of range-only tracking, for the assumed threshold ρ = 0.06 , the accuracy of the object position estimation remained almost unaffected despite the number of the H matrix updates being reduced to only 11% of the number in a standard EKF. The presented simulation results show that initially increasing the threshold ρ value does not change the filter’s accuracy, but, at the same time, decreases its number of computations. When exceeding a specific threshold value, ρ = 0.07 in the considered example, estimation errors increase rapidly to a very large and unacceptable level.
In the case of angle-only tracking, the computational savings can also be achieved. However, they are not as prominent as in the previous system, which results from a simpler and less computationally demanding function in the H matrix. The comparison of these two cases leads to a conclusion that the proposed adaptive filter would be most effective in problems where the H matrix elements are complicated and computationally demanding. Then, significant savings on the number of operations can be achieved with an even slight reduction of the number of the H matrix updates.
The proposed estimation method can be used in any field where the estimation of a state vector in a non-linear system is necessary, but the applications presented in this paper are related mainly to radiolocation and radio-navigation. It seems that, as the EKFs used in GNSS receivers process observables related to ranges, and typical radars process both ranges and angles, the H matrix elements in these filters contain enough time-consuming operations, that applying the proposed filter in them could be beneficial.

Funding

This research received no external funding.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Bar-Shalom, Y.; Li, X.R.; Kirubarajan, T. Estimation with Applications to Tracking and Navigation Theory Algorithms and Software, 1st ed.; John Wiley & Sons: Hoboken, NJ, USA, 2001. [Google Scholar]
  2. Brown, R.G.; Hwang, P.Y.C. Introduction to Random Signals and Applied Kalman Filtering, 4th ed.; Wiley: Hoboken, NJ, USA, 2012. [Google Scholar]
  3. Matuszewski, J.; Dikta, A. Emitter Location Errors in Electronic Recognition System. In Proceedings of the XI Conference on Reconnaissance and Electronic Warfare Systems, Oltarzew, Poland, 21–23 November 2016; pp. C1–C8. [Google Scholar]
  4. Kaniewski, P.; Smagowski, P.; Konatowski, S. Ballistic Target Tracking with Use of Cinetheodolites. Int. J. Aerosp. Eng. 2019, 2019, 1–13. [Google Scholar] [CrossRef] [Green Version]
  5. Kayton, M.; Fried, W.R. Avionics Navigation Systems, 2nd ed.; John Wiley & Sons: Hoboken, NJ, USA, 1997. [Google Scholar]
  6. Gustafsson, F. Particle Filter Theory and Practice with Positioning Applications. IEEE Aerosp. Electron. Syst. Mag. 2010, 25, 53–82. [Google Scholar] [CrossRef] [Green Version]
  7. Konatowski, S.; Sosnowski, B. Accuracy Evaluation of The Estimation Process by Selected Non-linear Filters. Przeglad Elektrotechniczny 2011, 87, 101–106. [Google Scholar]
  8. Farrell, J.A. Aided Navigation GPS with High Rate Sensors, 1st ed.; McGraw-Hill: New York, NY, USA, 2008. [Google Scholar]
  9. Julier, S.J.; Uhlmann, J.K. A New Extension of The Kalman Filter to Nonlinear Systems. In Proceedings of the Signal Processing, Sensor Fusion, and Target Recognition VI, Orlando, FL, USA, 21–25 April 1997; pp. 182–193. [Google Scholar]
  10. Ristic, B.; Arulampalam, S.; Gordon, N. Beyond the Kalman Filter: Particle Filters for Tracking Applications; Artech House Radar Library (Hardcover); Artech Print on Demand: Norwood, MA, USA, 2004. [Google Scholar]
  11. Doucet, A.; De Freitas, N.; Gordon, N. Sequential Monte Carlo Methods in Practice, 1st ed.; Information Science and Statistics; Springer: New York, NY, USA, 2001. [Google Scholar]
  12. Sun, X.; Medvedovic, M. Model Reduction and Parameter Estimation of Non-linear Dynamical Biochemical Reaction Networks. IET Syst. Biol. 2016, 10, 10–16. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  13. Jorgensen, J.B.; Thomsen, P.G.; Madsen, H.; Kristensen, M.R. A Computationally Efficient and Robust Implementation of the Continuous-Discrete Extended Kalman Filter. In Proceedings of the 2007 American Control Conference, New York, NY, USA, 11–13 July 2007; pp. 3706–3712. [Google Scholar]
  14. Raitoharju, M.; Piche, R. On Computational Complexity Reduction Methods for Kalman Filter Extensions. IEEE Aerosp. Electron. Syst. Mag. 2019, 34, 2–19. [Google Scholar] [CrossRef] [Green Version]
  15. Valade, A.; Acco, P.; Grabolosa, P.; Fourniols, J.-Y. A Study about Kalman Filters Applied to Embedded Sensors. Sensors 2017, 17, 2810. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  16. Tang, X.; Falco, G.; Falletti, E. Complexity Reduction of the Kalman Filter-based Tracking Loops in GNSS Receivers. GPS Solut. 2017, 21, 685–699. [Google Scholar] [CrossRef]
  17. Minkler, G.; Minkler, J. Theory and Application of Kalman Filtering; Magellan Book Company: Palm Bay, FL, USA, 1993. [Google Scholar]
Figure 1. Block diagram of the Extended Kalman Filter.
Figure 1. Block diagram of the Extended Kalman Filter.
Sensors 20 01584 g001
Figure 2. Block diagram of the modified Extended Kalman Filter.
Figure 2. Block diagram of the modified Extended Kalman Filter.
Sensors 20 01584 g002
Figure 3. An example of a simple radar system.
Figure 3. An example of a simple radar system.
Sensors 20 01584 g003
Figure 4. An example of a 2D radar system with range and angle measurements.
Figure 4. An example of a 2D radar system with range and angle measurements.
Sensors 20 01584 g004
Figure 5. Influence of the threshold ρ on the number of measurement matrix updates.
Figure 5. Influence of the threshold ρ on the number of measurement matrix updates.
Sensors 20 01584 g005
Figure 6. Influence of the threshold ρ on the RMS errors of position estimation.
Figure 6. Influence of the threshold ρ on the RMS errors of position estimation.
Sensors 20 01584 g006
Figure 7. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] , and number of H matrix updates for ρ = 0 .
Figure 7. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] , and number of H matrix updates for ρ = 0 .
Sensors 20 01584 g007
Figure 8. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] , and number of H matrix updates for ρ = 0.02 .
Figure 8. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] , and number of H matrix updates for ρ = 0.02 .
Sensors 20 01584 g008
Figure 9. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] , and number of H matrix updates for ρ = 0.05 .
Figure 9. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] , and number of H matrix updates for ρ = 0.05 .
Sensors 20 01584 g009
Figure 10. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] , and number of H matrix updates for ρ = 0.06 .
Figure 10. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] , and number of H matrix updates for ρ = 0.06 .
Sensors 20 01584 g010
Figure 11. Trajectory used for establishing the threshold ρ by a simulation method.
Figure 11. Trajectory used for establishing the threshold ρ by a simulation method.
Sensors 20 01584 g011
Figure 12. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] and number of H matrix updates for ρ = 0 .
Figure 12. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] and number of H matrix updates for ρ = 0 .
Sensors 20 01584 g012
Figure 13. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] and number of H matrix updates for ρ = 0.2 .
Figure 13. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] and number of H matrix updates for ρ = 0.2 .
Sensors 20 01584 g013
Figure 14. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] and number of H matrix updates for ρ = 0.2 in the Extended Kalman filter (EKF) with a forced H matrix update every 10 steps.
Figure 14. Values of H 11 , M 11 ( l ) [ x ^ ( k + 1 | k ) x ^ ( l | l 1 ) ] and number of H matrix updates for ρ = 0.2 in the Extended Kalman filter (EKF) with a forced H matrix update every 10 steps.
Sensors 20 01584 g014
Figure 15. Comparison of trajectories estimated with a standard EKF and modified EKF (MEKF).
Figure 15. Comparison of trajectories estimated with a standard EKF and modified EKF (MEKF).
Sensors 20 01584 g015
Figure 16. Values of H 11 , monitoring variable, and number of H 11 element updates for ρ = 0.06 .
Figure 16. Values of H 11 , monitoring variable, and number of H 11 element updates for ρ = 0.06 .
Sensors 20 01584 g016
Figure 17. Values of H 13 , monitoring variable, and number of H 13 element updates for ρ = 0.06 .
Figure 17. Values of H 13 , monitoring variable, and number of H 13 element updates for ρ = 0.06 .
Sensors 20 01584 g017
Figure 18. Values of H 21 , monitoring variable, and number of H 21 element updates for ρ = 0.06 .
Figure 18. Values of H 21 , monitoring variable, and number of H 21 element updates for ρ = 0.06 .
Sensors 20 01584 g018
Figure 19. Values of H 23 , monitoring variable, and number of H 23 element updates for ρ = 0.06 .
Figure 19. Values of H 23 , monitoring variable, and number of H 23 element updates for ρ = 0.06 .
Sensors 20 01584 g019
Table 1. Influence of the threshold ρ on the number of the measurement matrix updates and the estimation accuracy.
Table 1. Influence of the threshold ρ on the number of the measurement matrix updates and the estimation accuracy.
ThresholdAverage Number of UpdatesRMS Position Error [m]
01006.045
0.0132.206.054
0.0225.966.063
0.0322.006.053
0.0419.006.042
0.0517.716.013
0.0611.046.195
0.077.9988.265
0.084.977383.9
0.093.0392115
0.12.4672530
Table 2. Influence of the threshold ρ on the number of the measurement matrix updates and the estimation accuracy for a decreased intensity of the measurement errors σ R   = 1   m .
Table 2. Influence of the threshold ρ on the number of the measurement matrix updates and the estimation accuracy for a decreased intensity of the measurement errors σ R   = 1   m .
ThresholdAverage Number of UpdatesRMS Position Error [m]
01001.877
0.0131.001.887
0.0226.001.886
0.0322.001.887
0.0419.001.885
0.0516.001.895
0.0611.002.041
0.078.003.214
0.085.0010.32
Table 3. Influence of the threshold ρ on the number of the measurement matrix updates and the estimation accuracy for an increased intensity of the measurement errors σ R   = 100   m .
Table 3. Influence of the threshold ρ on the number of the measurement matrix updates and the estimation accuracy for an increased intensity of the measurement errors σ R   = 100   m .
ThresholdAverage Number of UpdatesRMS Position Error [m]
010057.89
0.0138.9757.89
0.0230.4457.88
0.0325.4957.92
0.0421.5257.81
0.0517.1257.39
0.0611.7258.83
0.076.9631822
0.083.4613151
Table 4. Influence of the threshold ρ on the times of calculations of unique fragments of the measurement matrix updates.
Table 4. Influence of the threshold ρ on the times of calculations of unique fragments of the measurement matrix updates.
Threshold Standard EKF ( t u p E K F 1   [ ms ] ) Modified EKF ( t u p E K F 2   [ ms ] )
08.2912.3
0.018.294.62
0.028.293.91
0.038.293.46
0.048.293.11
0.058.292.97
0.068.292.21
0.078.291.86
0.088.291.52
0.098.291.30
0.18.291.23
Table 5. Influence of the threshold ρ on the number of the measurement matrix updates and the estimation accuracy.
Table 5. Influence of the threshold ρ on the number of the measurement matrix updates and the estimation accuracy.
ThresholdAverage Number of UpdatesRMS Position Error [m]
01008.894
0.0249.898.909
0.0446.248.911
0.0639.038.907
0.0835.028.886
0.128.688.893
0.1521.288.830
0.2018.078.889
Table 6. Influence of the threshold ρ on the times of calculations of unique fragments of the measurement matrix updates.
Table 6. Influence of the threshold ρ on the times of calculations of unique fragments of the measurement matrix updates.
Threshold Standard EKF ( t u p E K F 1   [ ms ] ) Modified EKF ( t u p E K F 2   [ ms ] )
02.023.65
0.022.022.30
0.042.022.20
0.062.022.00
0.082.021.90
0.12.021.72
0.152.021.52
0.202.021.44

Share and Cite

MDPI and ACS Style

Kaniewski, P. Extended Kalman Filter with Reduced Computational Demands for Systems with Non-Linear Measurement Models. Sensors 2020, 20, 1584. https://doi.org/10.3390/s20061584

AMA Style

Kaniewski P. Extended Kalman Filter with Reduced Computational Demands for Systems with Non-Linear Measurement Models. Sensors. 2020; 20(6):1584. https://doi.org/10.3390/s20061584

Chicago/Turabian Style

Kaniewski, Piotr. 2020. "Extended Kalman Filter with Reduced Computational Demands for Systems with Non-Linear Measurement Models" Sensors 20, no. 6: 1584. https://doi.org/10.3390/s20061584

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop