-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKalmanV1.cpp
60 lines (47 loc) · 1020 Bytes
/
KalmanV1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Matrix Io(2,2);
// Inicializacion de P1
Matrix Pok(2,2);
// Matriz de covariancia de ruido de Proceso
Matrix Qok(2,2);
// Matriz de covariance del ruido de medicion
Matrix Ro(2,2);
Matrix Rok(2,2);
Matrix Xo_(2,1);
Matrix Zo(2,1);
Matrix Y_o(2,1);
Matrix Ko(2,2);
Matrix Kalman_o(float x, float y){
Qok(0,0)=covX2;
Qok(1,1)=covY2;
Ro(0,0)=covX_gps;
Ro(1,1)=covY_gps;
Io=Matrix::createIdentity(2);
if (Satellites>=6){
// printf("cont=20");
Zo(0,0)=x;
Zo(1,0)=y;
Y_o=Xo_;
// printf("Pok\n");
// std::cout<<Pok;
// printf("Rok\n");
// std::cout<<Rok;
Pok=Pok+Qok;
Rok=Ro+Pok;
Ko=Pok*Rok.inverse();
Xo_=Xo_+Ko*(Zo-Y_o);
// printf("R\n");
// std::cout<<R;
// printf("Pok\n");
// std ::cout<<Pok;
// printf("Rok\n");
// std::cout<<Rok;
// printf("Ko\n");
// std::cout<<Ko;
// printf("Zo\n");
// std::cout<<Zo;
// printf("Y_o\n");
// std::cout<<Y_o;
Pok=(Io-Ko)*Pok;
}
return Xo_;
}