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

Added missing init and tex member in overload plus method (dynSerie class).

parent ad68019a
Branches
Tags
No related merge requests found
......@@ -70,9 +70,11 @@ end
A = dynSeries();
A.freq = B.freq;
A.init = B.init;
A.nobs = max(B.nobs,C.nobs);
A.vobs = max(B.vobs,C.vobs);
A.name = repmat({'--NA--'},A.vobs,1);
A.tex = repmat({'--NA--'},A.vobs,1);
A.data = bsxfun(@plus,B.data,C.data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment