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".
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