gui: no need to specify indices

time-shift
Houtan Bastani 2019-02-07 12:13:08 +01:00
parent 19cc08b7e5
commit ae5dbdee9f
No known key found for this signature in database
GPG Key ID: 000094FB955BE169
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ jm = loadjson(json, 'SimplifyCell', 0);
%% INITVAL instructions
% initialize exogenous shocks to zero and compute initial steady state
options_.initval_file = 0;
oo_.exo_steady_state(1:jm.exonum) = 0;
oo_.exo_steady_state(:, 1) = 0;
if M_.exo_nbr > 0
oo_.exo_simul = ones(M_.maximum_lag,1)*oo_.exo_steady_state';
end
@ -65,7 +65,7 @@ end
ys0_= oo_.steady_state;
ex0_ = oo_.exo_steady_state;
if jm.permanentshockexist == 0
oo_.exo_steady_state(1:jm.exonum) = 0;
oo_.exo_steady_state(:, 1) = 0;
else
for exoiter = 1:length(jm.permanentshocksdescription)
currentshock = jm.permanentshocksdescription(exoiter);