evaluate_steady_state: minor simplification

remove-submodule
Sébastien Villemot 2023-06-12 19:14:45 +02:00
parent 08d378c244
commit 73ae1ac8ce
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 1 deletions

View File

@ -454,7 +454,7 @@ if M.static_and_dynamic_models_differ
if options.bytecode
z = repmat(ys,1,M.maximum_lead + M.maximum_lag + 1);
zx = repmat([exo_ss'], M.maximum_lead + M.maximum_lag + 1, 1);
[r, ~]= bytecode('dynamic','evaluate', z, zx, params, ys, 1);
r = bytecode('dynamic','evaluate', z, zx, params, ys, 1);
else
r = feval([M.fname '.sparse.dynamic_resid'], repmat(ys, 3, 1), exo_ss, params, ys);
end