display options that dynare is called with in output

time-shift
Houtan Bastani 2017-07-03 17:41:35 +02:00
parent 970feee342
commit f32f5f7346
1 changed files with 3 additions and 1 deletions

View File

@ -199,7 +199,6 @@ if isequal(regexp(firstline, '\s*\/\/'), 1)
else
varargin = union(varargin, dynoption);
end
varargin
end
end
end
@ -209,6 +208,9 @@ for i=1:length(varargin)
command = [command ' ' varargin{i}];
end
fprintf('Calling Dynare with arguments: ');
disp(varargin);
[status, result] = system(command);
disp(result)
if ismember('onlymacro', varargin)