From 5592078269ee04d1537f74a92932bd654319d73c Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Fri, 4 Oct 2019 10:08:29 +0200 Subject: [PATCH] uncapitalize DYNARE in error messages [skip ci] --- matlab/dyn2vec.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/matlab/dyn2vec.m b/matlab/dyn2vec.m index 46a3b5adf..d4223b843 100644 --- a/matlab/dyn2vec.m +++ b/matlab/dyn2vec.m @@ -32,7 +32,7 @@ function [z,zss]=dyn2vec(M_, oo_, options_, s1, s2) % along with Dynare. If not, see . if ~(nargin >= 3) - error('DYNARE dyn2vec error: function takes at least 3 arguments'); + error('Dynare dyn2vec error: function takes at least 3 arguments'); end if options_.smpl == 0 @@ -43,7 +43,7 @@ end if nargin == 3 if nargout > 0 - t = ['DYNARE dyn2vec error: the function doesn''t return values when' ... + t = ['Dynare dyn2vec error: the function doesn''t return values when' ... ' used without input argument']; error(t); end @@ -64,7 +64,7 @@ else z = oo_.exo_simul(M_.maximum_lag+options_.smpl(1):M_.maximum_lag+options_.smpl(2)); end else - t = ['DYNARE dyn2vec error: variable ' deblank(s1(i,:)) ' doesn''t' ... + t = ['Dynare dyn2vec error: variable ' deblank(s1(i,:)) ' doesn''t' ... ' exist.'] ; error (t) ; end