Skip to content
Snippets Groups Projects
Commit 7ab0fab2 authored by adjemian's avatar adjemian
Browse files

Added missing semi colon.

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@2012 ac1d8469-bf42-47a9-8791-bf33cf982152
parent 4580290d
Branches
Tags
No related merge requests found
......@@ -304,10 +304,10 @@ function [dr,info,M_,options_,oo_] = dr1(dr,task,M_,options_,oo_)
temp = sort(abs(dr.eigval));
if nba > nyf
temp = temp(nd-nba+1:nd-nyf)-1-options_.qz_criterium;
info(1) = 3
info(1) = 3;
elseif nba < nyf;
temp = temp(nd-nyf+1:nd-nba)-1-options_.qz_criterium;
info(1) = 4
info(1) = 4;
end
info(2) = temp'*temp;
return
......@@ -383,7 +383,7 @@ function [dr,info,M_,options_,oo_] = dr1(dr,task,M_,options_,oo_)
temp = sort(abs(dr.eigval));
if nba > nyf
temp = temp(nd-nba+1:nd-nyf)-1-options_.qz_criterium;
info(1) = 3
info(1) = 3;
elseif nba < nyf;
temp = temp(nd-nyf+1:nd-nba)-1-options_.qz_criterium;
info(1) = 4;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment