reporting: remove config option

remove-priordens
Houtan Bastani 2013-05-15 16:23:58 +02:00
parent c1f73901b5
commit 3d0b2f49e3
5 changed files with 0 additions and 17 deletions

View File

@ -54,11 +54,6 @@ disp([name '.figname = ']);
disp(' ');
disp([' ''' o.figname '''']);
disp(' ');
disp([name '.config = ']);
disp(' ');
disp([' ''' o.config '''']);
disp(' ');
disp([name '.legend = ']);
disp(' ');

View File

@ -33,8 +33,6 @@ function o = graph(varargin)
o = struct;
o.config = '';
o.seriesElements = seriesElements();
o.title = '';
@ -90,7 +88,6 @@ end
% Check options provided by user
assert(ischar(o.title), '@graph.graph: title must be a string');
assert(ischar(o.footnote), '@graph.graph: footnote must be a string');
assert(ischar(o.config), '@graph.graph: config file must be a string');
assert(ischar(o.xlabel), '@graph.graph: xlabel file must be a string');
assert(ischar(o.ylabel), '@graph.graph: ylabel file must be a string');
assert(ischar(o.figname), '@graph.graph: figname must be a string');

View File

@ -49,11 +49,6 @@ disp([name '.filename = ']);
disp(' ');
disp([' ''' o.filename '''']);
disp(' ')
disp([name '.config = ']);
disp(' ');
disp([' ''' o.config '''']);
disp(' ')
disp([name '.numPages() = ']);
disp(' ');

View File

@ -39,7 +39,6 @@ o.margin = 2.5;
o.marginUnit = 'cm';
o.pages = pages();
o.filename = 'report.tex';
o.config = '';
o.showDate = true;
o.compiler = '';
@ -71,7 +70,6 @@ end
% Check options provided by user
assert(ischar(o.title), '@report.report: title must be a string');
assert(ischar(o.filename), '@report.report: filename must be a string');
assert(ischar(o.config), '@report.report: config file must be a string');
assert(ischar(o.compiler), '@report.report: compiler file must be a string');
assert(islogical(o.showDate), '@report.report: showDate must be either true or false');
assert(isfloat(o.margin) && o.margin > 0, '@report.report: margin must be a float > 0.');

View File

@ -37,7 +37,6 @@ o.title = '';
o.titleSize = 'large';
o.footnote = '';
o.config = '';
o.showHlines = false;
o.showVlines = false;
o.vlineAfter = '';
@ -75,7 +74,6 @@ end
% Check options provided by user
assert(ischar(o.title), '@table.table: title must be a string');
assert(ischar(o.footnote), '@table.table: footnote must be a string');
assert(ischar(o.config), '@table.table: config file must be a string');
assert(islogical(o.showHlines), '@table.table: showHlines must be true or false');
assert(islogical(o.showVlines), '@table.table: showVlines must be true or false');
assert(isint(o.precision), '@table.table: precision must be an int');