Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.19 KB

README.md

File metadata and controls

32 lines (26 loc) · 1.19 KB

dogma

Automated API documentation generation for Matlab packages.

What is dogma?

Dogma stands for documentation generation for Matlab packages and is a small Matlab package that is supposed to parse another Matlab package (called target). It creates a graph and allows to export the collected information of the target (contained in the graph representation) in an API documentation format to LaTeX or HTML.

Get started

Clone this repository, add it to your Matlab path and run dogma on a Matlab package of your choice:

import dogma.*;

mypkg = dogma('+yourPackage');
mypkg.buildTree();
mypkg.export('xml','mypkg.xml');

For details on the syntax and some basic settings have a look at the test script.

Status

Dogma is in development status - while basic functionality is implemented, some features are missing. Comments, use cases and contributions are very welcome!

Examples