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