GenerateManual

PURPOSE ^

GenerateManual - Output an html tutorial for the matlab codes in this project. It calls the m2html tool.

SYNOPSIS ^

This is a script file.

DESCRIPTION ^

 GenerateManual - Output an html tutorial for the matlab codes in this project. It calls the m2html tool.
   The generated manual is located at "document/manual".

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 % GenerateManual - Output an html tutorial for the matlab codes in this project. It calls the m2html tool.
0002 %   The generated manual is located at "document/manual".
0003 %
0004 
0005 % clear previous document
0006 if exist('document/manual','dir')
0007     rmdir('document/manual','s');
0008 end
0009 
0010 cd ..
0011 addpath ../m2html
0012 m2html('mfiles','AER','htmldir','AER/document/manual','recursive','on','global','on',...
0013     'todo','off','template','frame','index','menu');
0014 cd AER

Generated on Sat 23-Jan-2010 22:26:10 by m2html © 2005