Skip to content
Snippets Groups Projects
Commit 031632ed authored by Johannes Pfeifer's avatar Johannes Pfeifer
Browse files

stoch_simul.m: provide informative error message if no varexo have been defined

parent 107be125
Branches
Tags
1 merge request!1661stoch_simul.m: provide informative error message if no varexo have been defined
......@@ -24,6 +24,10 @@ if isequal(options_.order,0)
error('stoch_simul:: The order of the Taylor approximation cannot be 0!')
end
if M_.exo_nbr==0
error('stoch_simul:: does not support having no varexo in the model. As a workaround you could define a dummy exogenous variable.')
end
test_for_deep_parameters_calibration(M_);
dr = oo_.dr;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment