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
d08fdb67
Commit
d08fdb67
authored
Oct 09, 2013
by
Houtan Bastani
Browse files
reporting: fix syntax for dynSeries change
parent
0264a6b0
Changes
2
Hide whitespace changes
Inline
Side-by-side
matlab/reports/@series/getName.m
View file @
d08fdb67
...
...
@@ -19,5 +19,5 @@ function s = getName(o)
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
assert
(
~
isempty
(
o
.
data
)
&&
size
(
o
.
data
,
2
)
==
1
);
s
=
o
.
data
(
1
)
.
name
()
;
s
=
o
.
data
.
name
;
end
\ No newline at end of file
matlab/reports/@series/getTexName.m
View file @
d08fdb67
...
...
@@ -19,5 +19,5 @@ function s = getTexName(o)
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
assert
(
~
isempty
(
o
.
data
)
&&
size
(
o
.
data
,
2
)
==
1
);
s
=
o
.
data
(
1
)
.
tex
()
;
s
=
o
.
data
.
tex
;
end
\ No newline at end of file
Write
Preview
Markdown
is supported
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