Structure holding the matrices manipulated by the unscented kalman filter in the vectorial case, for Parameter estimation. More...
#include <ukf_types.h>
Public Attributes | |
gsl_matrix * | Kk |
Kalman gain, a matrix of size . More... | |
gsl_matrix * | Kk_T |
The tranposed Kalman gain, a vector of size . More... | |
gsl_matrix * | Pwdk |
Covariance of : , of size . More... | |
gsl_matrix * | Pddk |
Covariance of the output, a matrix of size . More... | |
gsl_matrix * | Peek |
Covariance of the observation noise, of size . More... | |
gsl_matrix * | Prrk |
Covariance of the evolution noise, of size . More... | |
gsl_vector * | w |
Parameter vector, of size . More... | |
gsl_vector * | wk |
Temporary vector holding one sigma point, of size . More... | |
gsl_matrix * | Pk |
Covariance matrix of the parameters, of size . More... | |
gsl_matrix * | Sk |
Matrix holding the Cholesky decomposition of , of size . More... | |
gsl_vector * | cSk |
Vector holding one column of Sk, of size . More... | |
gsl_vector * | wm |
Weights used to compute the mean of the sigma points' images. More... | |
gsl_vector * | wc |
Weights used to update the covariance matrices. More... | |
gsl_matrix * | dk |
Temporary matrix holding the image of the sigma points, of size . More... | |
gsl_vector * | d_mean |
Vector holding the mean of the sigma points image, of size ŝ More... | |
gsl_vector * | ino_dk |
Vector holding the inovation, of size ŝ More... | |
gsl_matrix * | sigmaPoints |
Matrix holding the sigma points in the columns, of size . More... | |
gsl_vector * | vec_temp_n |
Temporary vector of size . More... | |
gsl_vector * | vec_temp_output |
Temporary vector of size . More... | |
gsl_matrix * | mat_temp_n_1 |
Temporary matrix of size . More... | |
gsl_matrix * | mat_temp_n_output |
Temporary matrix of size . More... | |
gsl_matrix * | mat_temp_output_n |
Temporary matrix of size . More... | |
gsl_matrix * | mat_temp_1_output |
Temporary matrix of size . More... | |
gsl_matrix * | mat_temp_output_1 |
Temporary matrix of size . More... | |
gsl_matrix * | mat_temp_output_output |
Temporary matrix of size . More... | |
gsl_matrix * | mat_temp_n_n |
Temporary matrix of size . More... | |
Structure holding the matrices manipulated by the unscented kalman filter in the vectorial case, for Parameter estimation.
gsl_vector* ukf::parameter::ukf_state::cSk |
Vector holding one column of Sk, of size .
gsl_vector* ukf::parameter::ukf_state::d_mean |
Vector holding the mean of the sigma points image, of size ŝ
gsl_matrix* ukf::parameter::ukf_state::dk |
Temporary matrix holding the image of the sigma points, of size .
gsl_vector* ukf::parameter::ukf_state::ino_dk |
Vector holding the inovation, of size ŝ
gsl_matrix* ukf::parameter::ukf_state::Kk |
Kalman gain, a matrix of size .
gsl_matrix* ukf::parameter::ukf_state::Kk_T |
The tranposed Kalman gain, a vector of size .
gsl_matrix* ukf::parameter::ukf_state::mat_temp_1_output |
Temporary matrix of size .
gsl_matrix* ukf::parameter::ukf_state::mat_temp_n_1 |
Temporary matrix of size .
gsl_matrix* ukf::parameter::ukf_state::mat_temp_n_n |
Temporary matrix of size .
gsl_matrix* ukf::parameter::ukf_state::mat_temp_n_output |
Temporary matrix of size .
gsl_matrix* ukf::parameter::ukf_state::mat_temp_output_1 |
Temporary matrix of size .
gsl_matrix* ukf::parameter::ukf_state::mat_temp_output_n |
Temporary matrix of size .
gsl_matrix* ukf::parameter::ukf_state::mat_temp_output_output |
Temporary matrix of size .
gsl_matrix* ukf::parameter::ukf_state::Pddk |
Covariance of the output, a matrix of size .
gsl_matrix* ukf::parameter::ukf_state::Peek |
Covariance of the observation noise, of size .
gsl_matrix* ukf::parameter::ukf_state::Pk |
Covariance matrix of the parameters, of size .
gsl_matrix* ukf::parameter::ukf_state::Prrk |
Covariance of the evolution noise, of size .
gsl_matrix* ukf::parameter::ukf_state::Pwdk |
Covariance of : , of size .
gsl_matrix* ukf::parameter::ukf_state::sigmaPoints |
Matrix holding the sigma points in the columns, of size .
gsl_matrix* ukf::parameter::ukf_state::Sk |
Matrix holding the Cholesky decomposition of , of size .
gsl_vector* ukf::parameter::ukf_state::vec_temp_n |
Temporary vector of size .
gsl_vector* ukf::parameter::ukf_state::vec_temp_output |
Temporary vector of size .
gsl_vector* ukf::parameter::ukf_state::w |
Parameter vector, of size .
gsl_vector* ukf::parameter::ukf_state::wc |
Weights used to update the covariance matrices.
gsl_vector* ukf::parameter::ukf_state::wk |
Temporary vector holding one sigma point, of size .
gsl_vector* ukf::parameter::ukf_state::wm |
Weights used to compute the mean of the sigma points' images.