Skip to content
Snippets Groups Projects
Commit ad080200 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Replaced dynSeries by dseries.

parent 28704d40
No related branches found
No related tags found
No related merge requests found
...@@ -471,8 +471,8 @@ else ...@@ -471,8 +471,8 @@ else
error('You have to specify the datafile!') error('You have to specify the datafile!')
end end
% Load the data in a dynSeries object. % Load the data in a dseries object.
dataset = dynSeries(datafile); dataset = dseries(datafile);
% Select a subset of the variables. % Select a subset of the variables.
dataset = dataset{options_.varobs{:}}; dataset = dataset{options_.varobs{:}};
...@@ -499,7 +499,7 @@ end ...@@ -499,7 +499,7 @@ end
if ~set_time_default_initial_period && dataset_default_initial_period if ~set_time_default_initial_period && dataset_default_initial_period
% Overwrite the initial period in dataset (it was set to default). % Overwrite the initial period in dataset (it was set to default).
% Note that the update of freq and time members is auto-magically % Note that the update of freq and time members is auto-magically
% done by dynSeries::subsasgn overload method. % done by dseries::subsasgn overload method.
dataset.init = options_.initial_period; dataset.init = options_.initial_period;
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment