Home > . > prt_func2html.m

prt_func2html

PURPOSE ^

Script to generate the list of .m functions into html files

SYNOPSIS ^

This is a script file.

DESCRIPTION ^

 Script to generate the list of .m functions into html files 
 which can be browsed around with your favourite browser.

 Note that this script relies on the M2HTML package which is *NOT*
 distributed with PRoNTo!
 
 For more information, please read the M2HTML tutorial and FAQ at:
    <http://www.artefact.tk/software/matlab/m2html/>
__________________________________________________________________________
 Copyright (C) 2011 Machine Learning & Neuroimaging Laboratory

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 % Script to generate the list of .m functions into html files
0002 % which can be browsed around with your favourite browser.
0003 %
0004 % Note that this script relies on the M2HTML package which is *NOT*
0005 % distributed with PRoNTo!
0006 %
0007 % For more information, please read the M2HTML tutorial and FAQ at:
0008 %    <http://www.artefact.tk/software/matlab/m2html/>
0009 %__________________________________________________________________________
0010 % Copyright (C) 2011 Machine Learning & Neuroimaging Laboratory
0011 
0012 % Written by Christophe Phillips
0013 % $Id: prt_func2html.m 394 2011-11-17 22:14:43Z cphillip $
0014 
0015 cd(prt('dir'))
0016 
0017 subdirs = {'.', ['.',filesep,'machines'], ...
0018                             ['.',filesep,'batch'],['.',filesep,'utils']}; 
0019     % list of directories to include
0020 isubdirs = {'.svn','manual'}; % list of directories to exclude
0021 
0022 m2html('mfiles',subdirs, 'htmldir',fullfile('manual','html_doc'), ...
0023         'recursive','off');

Generated on Sun 20-May-2012 13:24:48 by m2html © 2005