Legend:
- Unmodified
- Added
- Removed
-
matlab/testKF.m
r37 r62 7 7 C=[1 0];%; 0 1]; 8 8 D=0.1;%[0.1; 0]; 9 R=0. 1;%[1 0; 0 0.1];9 R=0.01;%[1 0; 0 0.1]; 10 10 Q=[0.2 0 ; 0 0.2]; 11 11 … … 74 74 plot(x'); 75 75 hold on 76 plot([ zeros(size(xth,1),1)xth]','--'); % shift the predictions76 plot([xth]','--'); % shift the predictions 77 77 plot(xth2','+'); 78 78 plot(xthE','o'); … … 81 81 exec_times 82 82 exec_matlab./exec_times 83 keyboard 83 84 end