diff --git a/examples/1/example.mod b/examples/1/example.mod index d3c1362834520ee31e1d2d4b1dd014e899bd41fa..4f9151449a93da6842f6c65aadc1a7ddd406d10f 100644 --- a/examples/1/example.mod +++ b/examples/1/example.mod @@ -46,7 +46,7 @@ end; get_companion_matrix('toto', 'pacman'); // Update the parameters of the PAC expectation model (h0 and h1 vectors). -pac.update.equation('pacman'); +pac.update.expectation('pacman'); // Set initial conditions to zero. Please use more sensible values if any... initialconditions = dseries(zeros(10, M_.endo_nbr+M_.exo_nbr), 2000Q1, vertcat(M_.endo_names,M_.exo_names)); diff --git a/examples/2/example.mod b/examples/2/example.mod index ae812a28d3f1e25157d1e12232f7a9ddcfa4da7d..9984b4d7887c56d38bf8bcc2fa711786306fdbd3 100644 --- a/examples/2/example.mod +++ b/examples/2/example.mod @@ -50,7 +50,7 @@ end; get_companion_matrix('toto', 'pacman'); // Update the parameters of the PAC expectation model (h0 and h1 vectors). -pac.update.equation('pacman'); +pac.update.expectation('pacman'); // Set initial conditions to zero. Please use more sensible values if any... initialconditions = dseries(zeros(10, M_.endo_nbr+M_.exo_nbr), 2000Q1, vertcat(M_.endo_names,M_.exo_names)); diff --git a/examples/3/example.mod b/examples/3/example.mod index 21ef105b734578e312c857d5274c5a1656c3f10d..4cc9133636bde60f090f613af8d12297a0891dad 100644 --- a/examples/3/example.mod +++ b/examples/3/example.mod @@ -49,7 +49,7 @@ end; get_companion_matrix('toto', 'pacman'); // Update the parameters of the PAC expectation model (h0 and h1 vectors). -pac.update.equation('pacman'); +pac.update.expectation('pacman'); // Set initial conditions to zero. Please use more sensible values if any... initialconditions = dseries(zeros(10, M_.endo_nbr+M_.exo_nbr), 2000Q1, vertcat(M_.endo_names,M_.exo_names)); diff --git a/examples/4/example.mod b/examples/4/example.mod index 87a2524ab10edf47a1eb957808a3023d969b2b9f..1d3e6ba54552382f3604f3c76376e20392d53297 100644 --- a/examples/4/example.mod +++ b/examples/4/example.mod @@ -63,7 +63,7 @@ end; get_companion_matrix('toto', 'pacman'); // Update the parameters of the PAC expectation model (h0 and h1 vectors). -pac.update.equation('pacman'); +pac.update.expectation('pacman'); // Set initial conditions to zero. Please use more sensible values if any... initialconditions = dseries(zeros(10, M_.endo_nbr+M_.exo_nbr), 2000Q1, vertcat(M_.endo_names,M_.exo_names)); diff --git a/examples/5/example.mod b/examples/5/example.mod index 66917e0b33d2468a1ec161a43059fa5ac106aca8..623d0d0d33d876a12f3b1534629743bdd93ab17d 100644 --- a/examples/5/example.mod +++ b/examples/5/example.mod @@ -65,7 +65,7 @@ end; get_companion_matrix('toto', 'pacman'); // Update the parameters of the PAC expectation model (h0 and h1 vectors). -pac.update.equation('pacman'); +pac.update.expectation('pacman'); // Set initial conditions to zero. Please use more sensible values if any... initialconditions = dseries(zeros(10, M_.endo_nbr+M_.exo_nbr), 2000Q1, vertcat(M_.endo_names,M_.exo_names)); diff --git a/examples/6/example.mod b/examples/6/example.mod index dd207f50beb56915c48fbbdd76662243c6af5fe7..4178fef5b53800e6836a4a69304e2c9790d37d60 100644 --- a/examples/6/example.mod +++ b/examples/6/example.mod @@ -64,7 +64,7 @@ end; get_companion_matrix('toto', 'pacman'); // Update the parameters of the PAC expectation model (h0 and h1 vectors). -pac.update.equation('pacman'); +pac.update.expectation('pacman'); // Set initial conditions to zero for non logged variables, and one for logged variables init = zeros(10, M_.endo_nbr+M_.exo_nbr); diff --git a/examples/7/example.mod b/examples/7/example.mod index c090a81403c9136773af594df37d2d997b877dac..d9d8f3578a8d2df345ca94fc8286e21a8631044f 100644 --- a/examples/7/example.mod +++ b/examples/7/example.mod @@ -64,7 +64,7 @@ end; get_companion_matrix('toto', 'pacman'); // Update the parameters of the PAC expectation model (h0 and h1 vectors). -pac.update.equation('pacman'); +pac.update.expectation('pacman'); // Set initial conditions to zero. Please use more sensible values if any... initialconditions = dseries(zeros(10, M_.endo_nbr+M_.exo_nbr), 2000Q1, vertcat(M_.endo_names,M_.exo_names)); diff --git a/examples/8/example.mod b/examples/8/example.mod index ce35414ba6caa72a973b2aaee3ecaa935d09208d..237df34bd9c02bdd1cd5e6d6c54a72bf5cc55b4f 100644 --- a/examples/8/example.mod +++ b/examples/8/example.mod @@ -72,7 +72,7 @@ end; get_companion_matrix('toto', 'pacman'); // Update the parameters of the PAC expectation model (h0 and h1 vectors). -pac.update.equation('pacman'); +pac.update.expectation('pacman'); // Set initial conditions to zero. Please use more sensible values if any... initialconditions = dseries(zeros(10, M_.endo_nbr+M_.exo_nbr), 2000Q1, vertcat(M_.endo_names,M_.exo_names));