From 22edf0dc4b9480a2f8ab6dac0a05ec947ea5ee95 Mon Sep 17 00:00:00 2001
From: JupyterHub User <p42uwoeo@jupyter.rwth-aachen.de>
Date: Fri, 22 Oct 2021 23:43:17 +0000
Subject: [PATCH] Change comments

---
 notebooks/Pysim/DTBlock.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/notebooks/Pysim/DTBlock.py b/notebooks/Pysim/DTBlock.py
index 7d16ab8..70ef265 100644
--- a/notebooks/Pysim/DTBlock.py
+++ b/notebooks/Pysim/DTBlock.py
@@ -323,7 +323,7 @@ class DTStateSpace(DTBlock):
 
 
 #########################################################################
-########################### Kalman Filter  ##############################
+########################### Kalman-Filter  ##############################
 #########################################################################
 
 class KalmanFilter(DTBlock):
@@ -362,11 +362,11 @@ class KalmanFilter(DTBlock):
         # x = F*x + G*u
         self.x = dot(self.F,self.x)+dot(self.G,uu)
         # Kovarianz der Zustandsvorhersage:
-        # Pk = F*P*F' + Q
+        # Pk = F*P*F.T + Q
         self.Pk = dot(self.F,dot(self.Pk,self.F.T)) + self.Q
 
         # Kovarianz der Innovation:
-        # S = C*Pk*C' + R
+        # S = C*Pk*C.T + R
         S = dot(self.C, dot(self.Pk, self.C.T))+ self.R
 
         # Kalman Gain:
-- 
GitLab