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
f8cb52bd
Commit
f8cb52bd
authored
Jul 02, 2015
by
Houtan Bastani
Browse files
update make_report_irfs
parent
00a87039
Changes
1
Show whitespace changes
Inline
Side-by-side
macros/make_report_irfs.m
View file @
f8cb52bd
function
make_report_irfs
(
M
,
oo
)
% Builds
posterior IRFs after the MH algorithm.
% Builds
canned IRF report
%
% INPUTS
% M [struct]
% oo [struct]
%
% OUTPUTS
...
...
@@ -50,11 +51,13 @@ function make_report_irfs(M, oo)
for
i
=
1
:
length
(
M
.
exo_names
)
for
j
=
1
:
length
(
M
.
endo_names
)
if
mod
(
n6
-
1
,
6
)
==
0
r
=
r
.
addPage
(
'title'
,
{
'Canned Irf Report'
;
[
'shock '
M
.
exo_names
(
i
)]});
r
=
r
.
addPage
(
'title'
,
{
'Canned Irf Report'
;
[
'shock '
...
strrep
(
strtrim
(
M
.
exo_names
(
i
,:)),
'_'
,
'\_'
)]});
r
=
r
.
addSection
(
'cols'
,
2
);
n6
=
1
;
end
idx
=
ismember
(
fields
,[
M
.
endo_names
(
j
)
'_'
M
.
exo_names
(
i
)]);
idx
=
ismember
(
fields
,[
strtrim
(
M
.
endo_names
(
j
,:))
'_'
...
strtrim
(
M
.
exo_names
(
i
,:))]);
if
any
(
idx
)
r
=
r
.
addGraph
(
'data'
,
dseries
(
oo
.
irfs
.
(
fields
{
idx
})
'
),
...
'title'
,
strrep
(
fields
{
idx
},
'_'
,
'\_'
),
...
...
...
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