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