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
Dóra Kocsis
dynare
Commits
a9eb95ff
Commit
a9eb95ff
authored
Sep 26, 2013
by
Houtan Bastani
Browse files
reporting: series: fix spacing of table cell separators and eol's
parent
79f03773
Changes
1
Hide whitespace changes
Inline
Side-by-side
matlab/reports/@series/write.m
View file @
a9eb95ff
...
...
@@ -60,7 +60,7 @@ end
if
~
isempty
(
o
.
tableSubSectionHeader
)
fprintf
(
fid
,
'%s'
,
o
.
tableSubSectionHeader
);
for
i
=
1
:
size
(
dates
)
fprintf
(
fid
,
'
&
'
);
fprintf
(
fid
,
'
&
'
);
end
fprintf
(
fid
,
'\\\\%%\n'
);
return
;
...
...
@@ -75,7 +75,7 @@ end
data
=
o
.
data
(
dates
);
data
=
data
.
data
;
for
i
=
1
:
size
(
data
,
1
)
fprintf
(
fid
,
'
&'
);
fprintf
(
fid
,
'&'
);
if
o
.
tableShowMarkers
if
data
(
i
)
<
-
o
.
tableMarkerLimit
fprintf
(
fid
,
'\\color{%s}'
,
o
.
tableNegColor
);
...
...
@@ -91,5 +91,5 @@ for i=1:size(data,1)
fprintf
(
fid
,
']'
);
end
end
fprintf
(
fid
,
'
\
\\\\
n
\n'
);
fprintf
(
fid
,
'\\\\
%%
\n'
);
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