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