classDiagramm

Utility class that opens a class diagram of the toolbox source.

Source: src/utilities/@classDiagramm/classDiagramm.m

Description

classDiagramm provides a single static method, showDiagramm, that imports the toolbox classes and displays them in a MATLAB class diagram (matlab.diagram.ClassViewer). The classes are imported from the src folder (located relative to the class file), associations between classes are shown, and the viewer is made visible.

By default classes in any *.internal.* namespace are removed from the diagram; pass false to keep them.

Syntax

classDiagramm.showDiagramm()
classDiagramm.showDiagramm(hideInternals)

Input arguments

Argument Description
hideInternals (optional) logical, default true. When true, classes in an internal namespace are removed from the diagram.

Example

% Show all toolbox classes, including internal ones
classDiagramm.showDiagramm(false);

MyToolbox Documentation | Generated automatically by CI/CD pipeline