mlreportgen.report.Section.customizeReporter
Class: mlreportgen.report.Section
Namespace: mlreportgen.report
Create custom section reporter class
Syntax
reporter = mlreportgen.report.Section.customizeReporter(classpath)
Description
reporter = mlreportgen.report.Section.customizeReporter(
creates a section class definition file that is a subclass of
classpath
)mlreportgen.report.Section
. The file is created at the specified
classpath
location. The
Section.customizeReporter
method also copies the default section
templates to the <classpath>/resources/template
folder. You can
use the new class definition file as a starting point to design a custom section class
for your report.
Input Arguments
Output Arguments
Examples
Create Custom Section Reporter
Create a custom section 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 MySection.m
class file is
<current working
folder>/newSection/@MySection/MySection.m
. The default title page
templates are in the <current working
folder>/newSection/@MySection/resources/templates
folder.
import mlreportgen.report.* Section.customizeReporter('newSection/@MySection');
After editing this new class file, you can use it as your title page reporter.
tp = MySection();
Version History
Introduced in R2017b