Added missing semicolon and deleted trailing whitespaces.

time-shift
Stéphane Adjemian (Charybdis) 2013-09-05 12:31:37 +02:00
parent 12fc7a4241
commit c9c0a25538
1 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ function display(A)
%! None %! None
%! @end deftypefn %! @end deftypefn
%@eod: %@eod:
vspace = ' '; vspace = ' ';
TABLE = ' '; TABLE = ' ';
@ -50,10 +50,10 @@ else
for t=1:10 for t=1:10
tmp = char(tmp,num2str(A.data(t,i))); tmp = char(tmp,num2str(A.data(t,i)));
end end
tmp = char(tmp,vspace) tmp = char(tmp,vspace);
for t=A.nobs-10:A.nobs for t=A.nobs-10:A.nobs
tmp = char(tmp,num2str(A.data(t,i))); tmp = char(tmp,num2str(A.data(t,i)));
end end
TABLE = horzcat(TABLE, tmp); TABLE = horzcat(TABLE, tmp);
end end
end end