Main Content

setTableTitle

Add title to table in Model Advisor analysis results

Description

setTableTitle(ftObj,titleText) adds a title to the table in the report generated by the formatting object ftObj, using the text specified by titleText.

example

Examples

collapse all

This example shows how to add table title in Model Advisor results.

Create a table template object.

ft = ModelAdvisor.FormatTemplate("TableTemplate");

Add a table title to the Model Advisor formatting template.

setTableTitle(ft,"Model Advisor Results");

Input Arguments

collapse all

ModelAdvisor.FormatTemplate object, specified as a handle to the formatting template.

Title text that displays the table title, specified as a character vector or string scalar.

Example: "Title of the table"

Version History

Introduced in R2009a