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

reporting: fix typos in validity checks

parent 02ca95e8
Branches
Tags
No related merge requests found
......@@ -42,8 +42,8 @@ assert(~isempty(o.data) && isa(o.data, 'dynSeries'), ...
assert(ischar(o.color), '@series.write: color must be a string');
assert(ischar(o.tableNegColor), '@series.write: tableNegColor must be a string');
assert(ischar(o.tablePosColor), '@series.write: tablePosColor must be a string');
assert(islogical(o.showTableMarkers), '@series.write: showTableMarkers must be a string');
assert(islogical(o.tableAlignRight), '@series.write: tableAlignRight must be a string');
assert(islogical(o.showTableMarkers), '@series.write: showTableMarkers must be true or false');
assert(islogical(o.tableAlignRight), '@series.write: tableAlignRight must be true or false');
%% Write Output
dataString = ['%.' num2str(precision) 'f'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment