Skip to content
Snippets Groups Projects
Commit 8d747f2a authored by MichelJuillard's avatar MichelJuillard
Browse files

fixed bug when only variances are estimated, but no deep parameter

(cherry picked from commit 1902cbe95fc9afe379a87e0b5b5c791aa387e9ff)
parent 6de79302
No related branches found
No related tags found
No related merge requests found
......@@ -335,7 +335,7 @@ nvx = estim_params_.nvx;
ncx = estim_params_.ncx;
nvn = estim_params_.nvn;
ncn = estim_params_.ncn;
if isfield(estim_params_,'param_vals')
if ~isempty(estim_params_.param_vals)
M.params(estim_params_.param_vals(:,1)) = xparam1(nvx+ncx+nvn+ncn+1:end);
end;
oo_.steady_state = evaluate_steady_state(oo_.steady_state,M,options_,oo_,steadystate_check_flag);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment