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

Fixed bug.

freq member was not defined when both inputs were dates objects.
parent f55072de
Branches
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ if isa(o,'dates') && isa(p,'dates')
return
end
q = dates();
q.freq = q.freq;
q.freq = o.freq;
q.time = [o.time; p.time];
q.ndat = o.ndat+p.ndat;
elseif isa(o,'dates') || isa(p,'dates')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment