Skip to content

Commit

Permalink
Update Kalman.h
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrouch authored Sep 11, 2024
1 parent dac631c commit 6ef7121
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions bbn_wave_freq_m5atomS3/Kalman.h
Original file line number Diff line number Diff line change
Expand Up @@ -616,13 +616,11 @@ void kalman_predict_P(register kalman_t *const kf) {
void kalman_predict_P_tuned(register kalman_t *const kf, matrix_data_t lambda) {
// matrices and vectors
const matrix_t *const A = &kf->F;
const matrix_t *const B = &kf->B;
matrix_t *const P = &kf->P;

// temporaries
matrix_data_t *const aux = kf->temporary.aux;
matrix_t *const P_temp = &kf->temporary.P;
matrix_t *const BQ_temp = &kf->temporary.BQ;

/************************************************************************/
/* Predict next covariance using system dynamics and input */
Expand Down

0 comments on commit 6ef7121

Please sign in to comment.