Use perfect_foresight_setup and perfect_foresight_solver routines.

time-shift
Stéphane Adjemian (Scylla) 2015-03-13 17:26:27 +01:00
parent f1d7060520
commit e2a149430e
1 changed files with 9 additions and 4 deletions

View File

@ -26,26 +26,31 @@ initval_file(filename = ramst_initval_file_data);
steady;
simul(periods=200);
perfect_foresight_setup(periods=200);
perfect_foresight_solver;
initval_file(filename = ramst_initval_file_data_row_vec_mat);
steady;
simul(periods=200);
perfect_foresight_setup(periods=200);
perfect_foresight_solver;
initval_file(filename = ramst_initval_file_data_col_vec_mat);
steady;
simul(periods=200);
perfect_foresight_setup(periods=200);
perfect_foresight_solver;
if ispc()
disp('Test #4')
initval_file(filename = ramst_initval_file_excel);
steady;
simul(periods=200);
perfect_foresight_setup(periods=200);
perfect_foresight_solver;
end