Skip to content
Snippets Groups Projects
Verified Commit 572e7d3c authored by Johannes Pfeifer's avatar Johannes Pfeifer Committed by Stéphane Adjemian
Browse files

solve_model_for_online_filter.m: correct dimension of H matrix

(cherry picked from commit e685fa39)
parent 77342bca
No related branches found
No related tags found
No related merge requests found
...@@ -71,7 +71,7 @@ if EstimatedParameters.nvn ...@@ -71,7 +71,7 @@ if EstimatedParameters.nvn
end end
offset = offset+EstimatedParameters.nvn; offset = offset+EstimatedParameters.nvn;
else else
H = zeros(size(DynareDataset.data, 1)); H = zeros(size(DynareDataset.data, 2));
end end
% Get the off-diagonal elements of the covariance matrix for the structural innovations. Test if Q is positive definite. % Get the off-diagonal elements of the covariance matrix for the structural innovations. Test if Q is positive definite.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment