From c9c0a2553833602ac14f5eae435844e4ac140b1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Charybdis=29?= Date: Thu, 5 Sep 2013 12:31:37 +0200 Subject: [PATCH] Added missing semicolon and deleted trailing whitespaces. --- matlab/@dynSeries/display.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/matlab/@dynSeries/display.m b/matlab/@dynSeries/display.m index ce7cb9325..155755ed3 100644 --- a/matlab/@dynSeries/display.m +++ b/matlab/@dynSeries/display.m @@ -17,7 +17,7 @@ function display(A) %! None %! @end deftypefn %@eod: - + vspace = ' '; TABLE = ' '; @@ -50,10 +50,10 @@ else for t=1:10 tmp = char(tmp,num2str(A.data(t,i))); end - tmp = char(tmp,vspace) + tmp = char(tmp,vspace); for t=A.nobs-10:A.nobs tmp = char(tmp,num2str(A.data(t,i))); - end + end TABLE = horzcat(TABLE, tmp); end end