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

Fixed bug.

parent 340bcc27
No related branches found
No related tags found
No related merge requests found
......@@ -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),:);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment