mlreportgen.report.TextFile.customizeReporter
Class: mlreportgen.report.TextFile
Namespace: mlreportgen.report
Syntax
reporter = mlreportgen.report.TextFile.customizeReporter(classpath)
Description
reporter = mlreportgen.report.TextFile.customizeReporter(
creates a text file class definition file that is a subclass of
classpath
)mlreportgen.report.TextFile
at the location specified by
classpath
. The TextFile.customizeReporter
method
copies the default text file templates to the
<classpath>/resources/template
folder. You can use the class
definition file as a starting point to design a custom TextFile
reporter
class for your report.
Input Arguments
Output Arguments
Examples
Create Custom Text File Reporter
Create a custom text file reporter and its associated default templates. The method
creates the derived class file at the specified path relative to the current working folder.
In this case, the path to the MyTextFile.m
class file is
<current working folder>/newTextFile/@MyTextFile/myTextFile.m
. The
default title page templates are in the <current working
folder>/newTextFile/@MyTextFile/resources/templates
folder.
import mlreportgen.report.* TextFile.customizeReporter("newTextFile/@MyTextFile");
After editing this new class file, you can use it as your text file section reporter.
tf = MyTextFile();
Version History
Introduced in R2023a