Main Content
setRowHeading
Specify table row title
Syntax
setRowHeading(table, row, heading)
Description
setRowHeading(table, row, heading)
specifies
a title for the designated table row.
Input Arguments
table | Instantiation of the |
row | An integer specifying row number |
heading | A character vector, element object, or object array specifying the table row title |
Examples
table1 = ModelAdvisor.Table(2,3); setRowHeading(table1, 1, 'Row 1 Title'); setRowHeading(table1, 2, 'Row 2 Title');