Skip to content
Snippets Groups Projects
Commit 25daa702 authored by sebastien's avatar sebastien
Browse files

4.0 macroprocessor.tex: merged r2635 changeset from trunk (added missing semicolons)

git-svn-id: https://www.dynare.org/svn/dynare/branches/4.0@2636 ac1d8469-bf42-47a9-8791-bf33cf982152
parent ea17b1df
Branches
Tags
No related merge requests found
......@@ -223,7 +223,7 @@ end;
\begin{verbatim}
model;
@#for country in [ "home", "foreign" ]
GDP_@{country} = K_@{country}^a * L_@{country}^(1-a)
GDP_@{country} = K_@{country}^a * L_@{country}^(1-a);
@#endfor
end;
\end{verbatim}
......@@ -270,9 +270,9 @@ end;
...
model;
@#if linear_mon_pol
i = w*i(-1) + (1-w)*i_ss + w2*(pie-piestar)
i = w*i(-1) + (1-w)*i_ss + w2*(pie-piestar);
@#else
i = i(-1)^w * i_ss^(1-w) * (pie/piestar)^w2
i = i(-1)^w * i_ss^(1-w) * (pie/piestar)^w2;
@#endif
...
end;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment