Class: slreportgen.report.LookupTable
Package: slreportgen.report
Create Simulink lookup table block reporter template
template = slreportgen.report.LookupTable.createTemplate(templatePath,type)
creates a copy of the template
= slreportgen.report.LookupTable.createTemplate(templatePath
,type
)LookupTable
reporter template specified by
type
at the templatePath
location. You can
use the copied template as a starting point to design a custom LookupTable reporter
template for your report.
Before you run this example, create a copy of the default HTML LookupTable
template and save it in a mytemplates
folder. Name the copied
template myLUTable.htmtx. Edit the template as desired. To use the new template for
the lookup table, assign its path to the TemplateSrc
property
of slreportgen.report.LookupTable
.
import mlreportgen.report.* import slreportgen.report.* rpt = Report('My Report','html'); lutable = LookupTable(); template = LookupTable.createTemplate('mytemplates\myLUTable','html'); lutable.TemplateSrc = template;