Fixed bug in @dynSeries/extract method (missing time member).

time-shift
Stéphane Adjemian (Ulysses) 2013-03-14 14:48:12 +01:00
parent 59f436dc44
commit 6541ce2325
1 changed files with 2 additions and 1 deletions

View File

@ -53,6 +53,7 @@ for i = 1:length(idVariableName)
end
A.data = B.data(:,idVariableName);
A.time = B.time;
A.init = B.init;
A.freq = B.freq;
A.nobs = B.nobs;