Fixed file encoding
This commit is contained in:
@@ -58,8 +58,8 @@ struct Kalman
|
||||
0, square(processNoiseVelocity);
|
||||
|
||||
// Prediction
|
||||
x = A * x; // Pr<EFBFBD>dizierter Zustand aus Bisherigem und System
|
||||
P = A * P*A.transpose()+Q; // Pr<EFBFBD>dizieren der Kovarianz
|
||||
x = A * x; // Prädizierter Zustand aus Bisherigem und System
|
||||
P = A * P*A.transpose()+Q; // Prädizieren der Kovarianz
|
||||
|
||||
// Correction
|
||||
float Z = measurment;
|
||||
|
||||
Reference in New Issue
Block a user