Skip to content
Snippets Groups Projects
Commit d1b4a10f authored by Houtan Bastani's avatar Houtan Bastani
Browse files

reporting: @table: fix display

parent c983d991
Branches
Tags
No related merge requests found
......@@ -30,9 +30,9 @@ function display(o)
name = 'report.page.section.table';
disp(' ');
disp([name '.caption = ']);
disp([name '.title = ']);
disp(' ');
disp([' ''' o.caption '''']);
disp([' ''' o.title '''']);
disp(' ');
disp([name '.footnote = ']);
......@@ -42,16 +42,20 @@ disp([' ''' o.footnote '''']);
disp(' ');
disp([name '.hlines = ']);
disp(' ');
disp([' ''' o.hlines '''']);
disp(o.hlines);
disp(' ');
disp([name '.vlines = ']);
disp(' ');
disp([' ''' o.vlines '''']);
disp(o.vlines);
disp(' ');
disp([name '.data = ']);
disp([name '.precision = ']);
disp(' ');
disp([' ''' o.data '''']);
disp(o.precision);
disp(' ');
disp([name '.seriesElements = ']);
disp(' ');
o.seriesElements.getSeriesElements()
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment