Removed excel data file used in ls2003_bayesian_xls.mod.

The excel data file available here:

http://www.dynare.org/Datasets/data_ca1_xls.xlsx

is downloaded by Matlab/Octave when performing the test. The file is
deleted after the estimation command.
time-shift
Stéphane Adjemian (Charybdis) 2015-04-14 15:08:34 +02:00
parent 62f81da6dd
commit 8022a181c8
3 changed files with 7 additions and 1 deletions

View File

@ -379,7 +379,6 @@ EXTRA_DIST = \
ms-sbvar/archive-files/specification_2v.dat \
ms-sbvar/archive-files/specification_2v2c.dat \
recursive/data_ca1.m \
recursive/data_ca1_xls.xlsx \
kalman_filter_smoother/fsdat_simul.m \
kalman_filter_smoother/fs2000a_steadystate.m \
identification/kim/kim2_steadystate.m \

Binary file not shown.

View File

@ -1,3 +1,9 @@
if ~isoctave() && ~matlab_ver_less_than('8.4')
websave('data_ca1_xls.xlsx','http://www.dynare.org/Datasets/data_ca1_xls.xlsx')
else
urlwrite('http://www.dynare.org/Datasets/data_ca1_xls.xlsx','data_ca1_xls.xlsx')
end
var y y_s R pie dq pie_s de A y_obs pie_obs R_obs;
varexo e_R e_q e_ys e_pies e_A;
@ -63,3 +69,4 @@ end;
estimation(datafile=data_ca1_xls,first_obs=8,nobs=[76 79],mh_nblocks=1,prefilter=1,mh_jscale=0.5,mh_replic=2000,forecast=8) y_obs R_obs pie_obs dq de;
delete('data_ca1_xls.xlsx')