Utility class that opens a class diagram of the toolbox source.
Source: src/utilities/@classDiagramm/classDiagramm.m
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.
classDiagramm.showDiagramm()
classDiagramm.showDiagramm(hideInternals)| Argument | Description |
|---|---|
hideInternals |
(optional) logical, default true. When
true, classes in an internal namespace are
removed from the diagram. |
% Show all toolbox classes, including internal ones
classDiagramm.showDiagramm(false);MyToolbox Documentation | Generated automatically by CI/CD pipeline