Merge branch 'disp_moments' into 'master'

disp_moments.m: make error message informative

See merge request Dynare/dynare!1730
time-shift
Sébastien Villemot 2020-06-15 09:47:22 +00:00
commit 87718ce8b7
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ ivar=zeros(nvar,1);
for i=1:nvar
i_tmp = strmatch(var_list{i}, M_.endo_names, 'exact');
if isempty(i_tmp)
error ('One of the variable specified does not exist') ;
error('The variable %s specified is not an endogenous variable',var_list{i});
else
ivar(i) = i_tmp;
end