Main Content

mlreportgen.report.TitlePage.customizeReporter

Class: mlreportgen.report.TitlePage
Package: mlreportgen.report

Create custom title page reporter class

Syntax

reporter = mlreportgen.report.TitlePage.customizeReporter(classpath)

Description

reporter = mlreportgen.report.TitlePage.customizeReporter(classpath) creates a title page class definition file that is a subclass of mlreportgen.report.TitlePage. The file is created at the specified classpath location. The TitlePage.customizeReporter method also copies the default title page templates to the <classpath>/resources/template folder. You can use the new class definition file as a starting point to design a custom title page class for your report. You can customize the title page class by, for example, adding new content holes and properties.

Input Arguments

expand all

Location of custom title page class, specified as a string or character array. The classpath argument also supports specifying a folder with @ before the class name.

Output Arguments

expand all

Title page reporter path, returned as the string specifying the path to the derived report class file.

Examples

Create Custom Title Page Reporter

Create a custom title page reporter and its associated default templates. The derived class file is created at the specified path relative to the current working folder. In this case, the path to the MyTitlePage.m class file is <current working folder>/newTitlePage/@MyTitlePage/MyTitlePage.m. The default title page templates are in the <current working folder>/newTitlePage/@MyTitlePage/resources/templates folder.

import mlreportgen.report.*
TitlePage.customizeReporter('newTitlePg/@MyTitlePage');

After editing this new class file, you can use it as your title page reporter.

tp = MyTitlePage();

Version History

Introduced in R2017b