Fix bug in method disp of dseries.

time-shift
Sébastien Villemot 2013-12-13 16:48:42 +01:00
parent 8b1e76a1bf
commit 6e8b35c7f3
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ separator = repmat(' | ',A.nobs+1,1);
vspace = ' ';
TABLE = ' ';
for t=1:A.nobs
TABLE = char(TABLE, format(A.dates(t)));
TABLE = char(TABLE, date2string(A.dates(t)));
end
for i = 1:A.vobs
TABLE = horzcat(TABLE,separator);