Specify table column title
setColHeading(table, column, heading)
setColHeading(table, column, heading)
specifies
that the column header of column
is set to heading
.
table | Instantiation of the |
column | An integer specifying the column number |
heading | A character vector, element object, or object array specifying the table column title |
table1 = ModelAdvisor.Table(2, 3); setColHeading(table1, 1, 'Header 1'); setColHeading(table1, 2, 'Header 2'); setColHeading(table1, 3, 'Header 3');