Main Content

slreportgen.report.LookupTable.customizeReporter

Class: slreportgen.report.LookupTable
Package: slreportgen.report

Create custom LookupTable reporter class

Syntax

reporter = slreportgen.report.LookupTable.customizeReporter(classpath)

Description

reporter = slreportgen.report.LookupTable.customizeReporter(classpath) creates a LookupTable reporter class definition file that is a subclass of slreportgen.report.LookupTable. The file is created at the specified classpath location. The LookupTable.customizeReporter method also copies the default LookupTable reporter templates to the <classpath>/resources/template folder. You can use the class definition file as a starting point to design a custom LookupTable reporter class for your report.

Input Arguments

expand all

Location of custom lookup table reporter class, specified as a string or character array. The classpath argument also supports specifying a folder with @ before the class name.

Output Arguments

expand all

Lookup table reporter path, returned as the string specifying the path to the derived report class file.

Examples

Create Custom Lookup Table Reporter

Create a custom lookup table 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 myLUTable.m class file is <current working folder>/newLUTable/@myLUTable/myLUTable.m. The default lookup table reporter templates are in the <current working folder>/newLUTable/@myLUTable/resources/templates folder.

import mlreportgen.report.*
import slreportgen.report.*
LookupTable.customizeReporter('newLUTable/@myLUTable');

After editing this new class file, you can use it as your LookupTable reporter.

lutable = myLUTable();

Version History

Introduced in R2018a