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
e02eca9e
Commit
e02eca9e
authored
Jun 10, 2014
by
Houtan Bastani
Browse files
reporting: fix shading on Linux
parent
0c596e85
Changes
1
Hide whitespace changes
Inline
Side-by-side
@graph/writeGraphFile.m
View file @
e02eca9e
...
...
@@ -184,21 +184,8 @@ if ~isempty(o.miscTikzAxisOptions)
end
fprintf
(
fid
,
']\n'
);
if
o
.
showZeroline
fprintf
(
fid
,
'%%zeroline\n\\addplot[black,line width=.5,forget plot] coordinates {(1,0)(%d,0)};\n'
,
dd
.
ndat
);
end
for
i
=
1
:
ne
o
.
series
{
i
}
.
writeSeriesForGraph
(
fid
,
dd
);
if
o
.
showLegend
le
=
o
.
series
{
i
}
.
getNameForLegend
();
if
~
isempty
(
le
)
fprintf
(
fid
,
'\\addlegendentry{%s}\n'
,
le
);
end
end
end
if
~
isempty
(
o
.
shade
)
fprintf
(
fid
,
'%%shading\n'
);
stringsdd
=
strings
(
dd
);
x1
=
find
(
strcmpi
(
date2string
(
o
.
shade
(
1
)),
stringsdd
));
x2
=
find
(
strcmpi
(
date2string
(
o
.
shade
(
end
)),
stringsdd
));
...
...
@@ -224,6 +211,19 @@ if ~isempty(o.shade)
end
end
if
o
.
showZeroline
fprintf
(
fid
,
'%%zeroline\n\\addplot[black,line width=.5,forget plot] coordinates {(1,0)(%d,0)};\n'
,
dd
.
ndat
);
end
for
i
=
1
:
ne
o
.
series
{
i
}
.
writeSeriesForGraph
(
fid
,
dd
);
if
o
.
showLegend
le
=
o
.
series
{
i
}
.
getNameForLegend
();
if
~
isempty
(
le
)
fprintf
(
fid
,
'\\addlegendentry{%s}\n'
,
le
);
end
end
end
fprintf
(
fid
,
'\\end{axis}\n\\end{tikzpicture}%%'
);
if
fclose
(
fid
)
==
-
1
error
(
'@graph.writeGraphFile: closing %s\n'
,
o
.
filename
);
...
...
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