Fix display of Dynare command arguments

time-shift
Sébastien Villemot 2018-06-05 17:27:03 +02:00
parent 8cadb2ac59
commit e8ade6a187
1 changed files with 2 additions and 1 deletions

View File

@ -226,9 +226,10 @@ end
if preprocessoroutput
fprintf(['Starting Dynare (version ' dynare_version() ').\n']);
fprintf('Calling Dynare with arguments: ');
disp(varargin);
if isempty(varargin)
disp('none')
else
disp(varargin);
end
end