mlreportgen.report.MATLABVariable.createTemplate
Class: mlreportgen.report.MATLABVariable
Package: mlreportgen.report
Create MATLAB variable template
Syntax
template = mlreportgen.report.MATLABVariable.createTemplate(templatePath,type)
Description
creates a copy of the MATLAB® variable reporter template specified by template
= mlreportgen.report.MATLABVariable.createTemplate(templatePath
,type
)type
at the
templatePath
location. You can use the copied template as a starting
point to design a custom MATLAB variable template for your report.
Input Arguments
Output Arguments
Examples
Create MATLAB Variable Template
To use the new template for the MATLAB variable, assign its path to the TemplateSrc
property of
mlreportgen.report.MATLABVariable
.
import mlreportgen.report.* rpt = Report('My Report','html'); mlvar = MATLABVariable(); template = MATLABVariable.createTemplate... ('mytemplates\myMLVar','html'); mlvar.TemplateSrc = template;
Version History
Introduced in R2018b