Pythonfiles
This commit is contained in:
@@ -42,8 +42,8 @@ class StochastischesModell:
|
||||
return Q_ll, P
|
||||
|
||||
|
||||
def berechne_Qvv(self, A: sp.Matrix, Q_ll: sp.Matrix, Q_xx: sp.Matrix) -> sp.Matrix:
|
||||
Q_vv = Q_ll - A * Q_xx * A.T
|
||||
def berechne_Qvv(self, A: sp.Matrix, P: sp.Matrix, Q_xx: sp.Matrix) -> sp.Matrix:
|
||||
Q_vv = P.inv() - A * Q_xx * A.T
|
||||
return Q_vv #Kofaktormatrix der Beobachtungsresiduen
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user