From c556766ea85f50804848c6106c7c29f1509b6691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=28Charybdis=29?= Date: Mon, 4 Jun 2018 14:25:45 +0200 Subject: [PATCH] Changed calibration of innovations and removed return statement. --- examples/6/example.mod | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/6/example.mod b/examples/6/example.mod index 88a424cc1..726fed2ae 100644 --- a/examples/6/example.mod +++ b/examples/6/example.mod @@ -53,11 +53,11 @@ diff(z) = gamma*(e_c_m*(x1(-1)-z(-1)) + c_z_1*diff(z(-1)) + c_z_2*diff(z(-2)) + end; shocks; - var ex1 = 1.0; - var ex2 = .1; - var ex1bar = 1.0; - var ex2bar = 0.1; - var ez = 1.0; + var ex1 = 1; + var ex2 = 1; + var ex1bar = 1; + var ex2bar = 1; + var ez = 1; end; // Build the companion matrix of the VAR model (toto). @@ -65,7 +65,7 @@ get_companion_matrix('toto', 'pacman'); // Update the parameters of the PAC expectation model (h0 and h1 vectors). pac.update.equation('pacman'); -return + // Set initial conditions to zero for non logged variables, and one for logged variables init = zeros(10, M_.endo_nbr+M_.exo_nbr); init(:,[2,4]) = ones(10,2);