Fixed file encoding

This commit is contained in:
2019-09-18 10:52:37 +02:00
parent 51117d7559
commit e4054a9206
3 changed files with 6 additions and 6 deletions

View File

@@ -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;