Main Content

本页采用了机器翻译。点击此处可查看最新英文版本。

mlreportgen.report.Axes.customizeReporter

类: mlreportgen.report.Axes
命名空间: mlreportgen.report

创建从坐标区报告器类派生的类

自 R2021b 起

语法

reporter = mlreportgen.report.Axes.customizeReporter(classPath)

说明

reporter = mlreportgen.report.Axes.customizeReporter(classPath) 创建一个报告类定义文件,该文件在 classPath 指定的位置定义 mlreportgen.report.Axes 的子类。该方法还将默认的报告器模板复制到包含类定义文件的文件夹的 resources/templates 子文件夹中。使用类定义文件作为起点来设计自定义报告器类。

输入参数

全部展开

新类定义文件的路径和名称,指定为字符串标量或字符向量。

描述
mlreportgen.report.Axes.customizeReporter("myFolder/MyClass")在当前文件夹的子文件夹 myFolder 中创建 MyClass.m
mlreportgen.report.Axes.customizeReporter("myFolder/@MyClass")

通过在类名前面加上 @ 字符来在类文件夹中创建报告器类。不要指定 .m 扩展。

请参阅包含类定义的文件夹

mlreportgen.report.Axes.customizeReporter("+myOrg/@MyClass")通过在文件夹名称前面加上 + 字符,在类命名空间中创建报告器类。

注意

您可以指定相对路径或绝对路径。

数据类型: string | char

输出参量

全部展开

新报告器类的路径和文件名,以字符串标量的形式返回。

示例

全部展开

创建自定义报告器及其相关的默认模板。派生类文件在相对于当前工作文件夹的指定路径下创建。在这种情况下,myAxes.m 类文件的路径是 <current working folder>/newAxes/@myAxes/myAxes.m。默认标题页模板位于 <current working folder>/newAxes/@myAxes/resources/templates 文件夹中。

mlreportgen.report.Axes.customizeReporter("newAxes/@myAxes")

编辑这个新的类文件后,您可以将其用作坐标区报告器。

axes = myAxes();

版本历史记录

在 R2021b 中推出