Fixed bug.

time-shift
Stéphane Adjemian (Charybdis) 2013-06-20 18:04:38 +02:00
parent 340bcc2739
commit 33053a7303
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ if dataset_.info.nvobs-size(rawdata,2)
end
if size(rawdata,1)~=dataset_.info.ntobs
fprintf('Restricting the sample to observations %d to %d. Using in total %d observations. \n',first,dataset_.info.ntobs,dataset_.info.ntobs-first+1)
fprintf('Restricting the sample to observations %d to %d. Using in total %d observations. \n',first,first+dataset_.info.ntobs-1,dataset_.info.ntobs)
end
rawdata = rawdata(first:(first+dataset_.info.ntobs-1),:);