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
f877620b
Commit
f877620b
authored
May 15, 2013
by
Houtan Bastani
Browse files
reporting: remove footnote option
parent
20e5a4d4
Changes
4
Show whitespace changes
Inline
Side-by-side
matlab/reports/@graph/display.m
View file @
f877620b
...
...
@@ -44,11 +44,6 @@ disp([name '.ylabel = ']);
disp
(
' '
);
disp
([
'
''
'
o
.
ylabel
'
''
'
]);
disp
(
' '
);
disp
([
name
'.footnote = '
]);
disp
(
' '
);
disp
([
'
''
'
o
.
footnote
'
''
'
]);
disp
(
' '
);
disp
([
name
'.figname = '
]);
disp
(
' '
);
...
...
matlab/reports/@graph/graph.m
View file @
f877620b
...
...
@@ -38,7 +38,6 @@ o.seriesElements = seriesElements();
o
.
title
=
''
;
o
.
ylabel
=
''
;
o
.
xlabel
=
''
;
o
.
footnote
=
''
;
o
.
figname
=
''
;
o
.
data
=
''
;
...
...
@@ -87,7 +86,6 @@ end
% Check options provided by user
assert
(
ischar
(
o
.
title
),
'@graph.graph: title must be a string'
);
assert
(
ischar
(
o
.
footnote
),
'@graph.graph: footnote must be a string'
);
assert
(
ischar
(
o
.
xlabel
),
'@graph.graph: xlabel file must be a string'
);
assert
(
ischar
(
o
.
ylabel
),
'@graph.graph: ylabel file must be a string'
);
assert
(
ischar
(
o
.
figname
),
'@graph.graph: figname must be a string'
);
...
...
matlab/reports/@table/display.m
View file @
f877620b
...
...
@@ -34,11 +34,6 @@ disp([name '.title = ']);
disp
(
' '
);
disp
([
'
''
'
o
.
title
'
''
'
]);
disp
(
' '
);
disp
([
name
'.footnote = '
]);
disp
(
' '
);
disp
([
'
''
'
o
.
footnote
'
''
'
]);
disp
(
' '
);
disp
([
name
'.showHlines = '
]);
disp
(
' '
);
...
...
matlab/reports/@table/table.m
View file @
f877620b
...
...
@@ -35,7 +35,6 @@ o.seriesElements = seriesElements();
o
.
title
=
''
;
o
.
titleSize
=
'large'
;
o
.
footnote
=
''
;
o
.
showHlines
=
false
;
o
.
showVlines
=
false
;
...
...
@@ -73,7 +72,6 @@ end
% Check options provided by user
assert
(
ischar
(
o
.
title
),
'@table.table: title must be a string'
);
assert
(
ischar
(
o
.
footnote
),
'@table.table: footnote must be a string'
);
assert
(
islogical
(
o
.
showHlines
),
'@table.table: showHlines must be true or false'
);
assert
(
islogical
(
o
.
showVlines
),
'@table.table: showVlines must be true or false'
);
assert
(
isint
(
o
.
precision
),
'@table.table: precision must be an int'
);
...
...
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