Skip to content

Commit

Permalink
fixed bug in kalman.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jstac committed Apr 3, 2015
1 parent 2a2c53c commit 1b0ea88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantecon/kalman.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,4 +240,4 @@ def stationary_innovation_covar(self):
# == Make sure that Sigma_infinity has been computed == #
if Sigma_infinity is None:
Sigma_infinity, K = self.stationary_values()
return dot(G dot(Sigma_infinity, G.T)) + R
return dot(G, dot(Sigma_infinity, G.T)) + R

0 comments on commit 1b0ea88

Please sign in to comment.