Класс: mlreportgen.report. MATLABVariable
Пакет: mlreportgen.report
Создайте шаблон переменной MATLAB
template = mlreportgen.report.MATLABVariable.createTemplate(templatePath,type)
создает копию шаблона генератора отчетов переменной MATLAB®, заданного template
= mlreportgen.report.MATLABVariable.createTemplate(templatePath
,type
)type
в местоположении templatePath
. Можно использовать скопированный шаблон в качестве отправной точки, чтобы разработать пользовательский шаблон переменной MATLAB для отчета.
Чтобы использовать новый шаблон для переменной MATLAB, присвойте ее путь к свойству TemplateSrc
mlreportgen.report.MATLABVariable
.
import mlreportgen.report.* rpt = Report('My Report','html'); mlvar = MATLABVariable(); template = MATLABVariable.createTemplate... ('mytemplates\myMLVar','html'); mlvar.TemplateSrc = template;
mlreportgen.report.MATLABVariable
| mlreportgen.report.Report
| mlreportgen.report.Reporter