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
04c8870f
Commit
04c8870f
authored
Jul 07, 2014
by
Houtan Bastani
Browse files
reporting: remove unused graphSize option
parent
57a3b9e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
@graph/graph.m
View file @
04c8870f
...
...
@@ -67,7 +67,6 @@ o.legendFontSize = 'tiny';
o
.
showZeroline
=
false
;
o
.
zeroLineColor
=
'black'
;
o
.
graphSize
=
[];
o
.
xTicks
=
[];
o
.
xTickLabels
=
{};
o
.
xTickLabelRotation
=
0
;
...
...
@@ -175,10 +174,6 @@ assert(isempty(o.data) || isdseries(o.data), ['@graph.graph: data must ' ...
'be a dseries'
]);
assert
(
isempty
(
o
.
seriesToUse
)
||
iscellstr
(
o
.
seriesToUse
),
[
'@graph.graph: '
...
'seriesToUse must be a cell array of string(s)'
]);
assert
(
isempty
(
o
.
graphSize
)
||
((
isfloat
(
o
.
graphSize
)
&&
length
(
o
.
graphSize
)
==
2
)),
...
[
'@graph.graph: graphSize is specified as an array with two float '
...
'entries, [width height]'
]);
assert
(
isempty
(
o
.
xTicks
)
||
isfloat
(
o
.
xTicks
),
...
'@graph.graph: xTicks must be a numerical array'
);
assert
(
iscellstr
(
o
.
xTickLabels
)
||
(
ischar
(
o
.
xTickLabels
)
&&
strcmpi
(
o
.
xTickLabels
,
'ALL'
)),
...
...
...
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