Skip to content
Snippets Groups Projects
Commit 22edf0dc authored by JupyterHub User's avatar JupyterHub User
Browse files

Change comments

parent 09cc1c19
No related branches found
No related tags found
1 merge request!1merge develop into master
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment