Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dynare
reporting
Commits
d4ad92b2
Commit
d4ad92b2
authored
Mar 17, 2017
by
Houtan Bastani
Browse files
only issue warning if empty dseries and dates objects are not found
parent
a5398f59
Changes
1
Hide whitespace changes
Inline
Side-by-side
initialize_reporting_toolbox.m
View file @
d4ad92b2
% Script to set the necessary paths for the Reporting toolbox
% Copyright (C) 2015 Dynare Team
% Copyright (C) 2015
-2017
Dynare Team
%
% This file is part of Dynare.
%
...
...
@@ -25,6 +25,10 @@ addpath(reporting_src_root);
addpath
([
reporting_src_root
filesep
'..'
filesep
'macros'
]);
% Reminder to add and initialize dates & dseries toolboxes
disp
(
'Remember to add the paths to the dates and dseries toolboxes'
);
disp
(
' before working with the reporting toolbox'
);
if
~
exist
(
'emptydatesobject'
,
'var'
)
disp
(
'Remember to add the paths to the dates toolbox before working with the reporting toolbox'
);
end
if
~
exist
(
'emptydseriesobject'
,
'var'
)
disp
(
'Remember to add the paths to the dseries toolbox before working with the reporting toolbox'
);
end
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment