41 #ifndef __EST_KALMAN_H__ 42 #define __EST_KALMAN_H__ 56 EST_FMatrix &Pinv_estimate_error_covariance_inverse,
58 EST_FMatrix &Rinv_measurement_noise_covariance_inverse,
A vector class for floating point numbers. EST_FVector x should be used instead of float *x wherever ...
bool kalman_filter(EST_FVector &x_state, EST_FMatrix &P_estimate_error_covariance, EST_FMatrix &Q_process_noise_covariance, EST_FMatrix &R_measurement_noise_covariance, EST_FMatrix &A_state_time_step_model, EST_FMatrix &H_state_to_measurement_model, EST_FVector &z_measurement)
bool kalman_filter_Pinv(EST_FVector &x_state, EST_FMatrix &Pinv_estimate_error_covariance_inverse, EST_FMatrix &Q_process_noise_covariance, EST_FMatrix &Rinv_measurement_noise_covariance_inverse, EST_FMatrix &A_state_time_step_model, EST_FMatrix &H_state_to_measurement_model, EST_FVector &z_measurement)