Skip to content
Snippets Groups Projects
Commit 2a13e528 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Fix bug in method disp of dseries.

(cherry picked from commit 6e8b35c7)
parent 06b822d0
Branches
Tags
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment