diff --git a/examples/1/example.mod b/examples/1/example.mod index d3c136283..4f9151449 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 ae812a28d..9984b4d78 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 21ef105b7..4cc913363 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 87a2524ab..1d3e6ba54 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 66917e0b3..623d0d0d3 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 dd207f50b..4178fef5b 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 c090a8140..d9d8f3578 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 ce35414ba..237df34bd 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));