% Create table for displaying results
numRows = 1;
numCols = 3;
table = ModelAdvisor.Table(numRows,numCols);
% Fill in table with example entries
setEntry(table,1,1,'entry 1');
setEntry(table,1,2,'entry 2');
setEntry(table,1,3,'entry 3');
% Specify widths of columns in table
setColWidth(table,1,1); % set column 1 to the default width
setColWidth(table,2,2); % make column 2 twice as wide as column 1
setColWidth(table,3,3); % make column 3 three times as wide as column 1
setColWidth(table,1,1); % set column 1 to the default
setColWidth(table,2,2); % make column 2 twice as wide as column 1
setColWidth(table,3,3); % make column 3 three times as wide as column 1