Révision 253
Ajouté par nibenmbare il y a presque 4 ans
branch/BEN_MBAREK/sp4a3/sp4a3_kalman.c | ||
---|---|---|
debug=0; ///Mettre à 1 pour afficher les matrices.
|
||
///Ajouter votre code ci-dessous///
|
||
// Kalman
|
||
|
||
Mul_Mat_Mat(4,4,F,4,1,X, X);
|
||
// X = F*X
|
||
Plot_Mat(X," X(k+1|k) = ");
|
||
|
||
//P = F*P*F'+Q;
|
||
//P = F*P*F'+Q;
|
||
|
||
Plot_Mat(P,"P(k+1|k) = F.P(k|k).FT + Q = ");
|
||
|
||
// K = P*H' / ( H*P*H' + R);
|
Formats disponibles : Unified diff
fin tp3