


MDOT - Export a dependency graph into DOT language
MDOT(MMAT, DOTFILE) loads a .mat file generated by M2HTML using option
('save','on') and writes an ascii file using the DOT language that can
be drawn using <dot> or <neato> .
MDOT(MMAT, DOTFILE,F) builds the graph containing M-file F and its
neighbors only.
See the following page for more details:
<http://www.graphviz.org/>
Example:
mdot('m2html.mat','m2html.dot');
!dot -Tps m2html.dot -o m2html.ps
!neato -Tps m2html.dot -o m2html.ps
See also M2HTML