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
e1bff2c8
Commit
e1bff2c8
authored
Nov 29, 2013
by
Stéphane Adjemian
Browse files
Adapted unitary tests for octave.
parent
59f19673
Changes
1
Hide whitespace changes
Inline
Side-by-side
matlab/@dseries/subsref.m
View file @
e1bff2c8
...
...
@@ -460,7 +460,7 @@ end
%
$
%
Instantiate
a
time
series
object
.
%
$
try
%
$
ts1
=
dseries
(
A
,[],
A_name
,[]);
%
$
ts1
.
save
;
%
$
ts1
.
save
(
'
ts1
'
)
;
%
$
t
=
1
;
%
$
catch
%
$
t
=
0
;
...
...
@@ -578,7 +578,11 @@ end
%
$
%
Instantiate
a
time
series
object
.
%
$
try
%
$
ts1
=
dseries
(
A
,[],
A_name
,[]);
%
$
ts1
.
save
();
%
$
if
isoctave
%
$
ts1
.
save
(
'
ts1
'
);
%
$
else
%
$
ts1
.
save
();
%
$
end
%
$
t
=
1
;
%
$
catch
%
$
t
=
0
;
...
...
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