Skip to content
Snippets Groups Projects
Commit f32f5f73 authored by Houtan Bastani's avatar Houtan Bastani
Browse files

display options that dynare is called with in output

parent 970feee3
Branches
Tags
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment