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

Fix bug (initial period in extended path).

extended_path was crashing in preceeded by a call to the set_time command.
parent be388664
Branches
Tags
No related merge requests found
Pipeline #5499 passed
......@@ -86,10 +86,16 @@ end % (while) loop over t
dyn_waitbar_close(hh);
% Set the initial period.
if isnan(DynareOptions.initial_period)
if isdates(DynareOptions.initial_period)
if ischar(DynareOptions.initial_period)
initial_period = dates(DynareOptions.initial_period);
else
initial_period = DynareOptions.initial_period;
end
elseif isnan(DynareOptions.initial_period)
initial_period = dates(1,1);
else
initial_period = DynareOptions.initial_period;
error('Type of option initial_period is wrong.')
end
% Return the simulated time series.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment