Mercurial > hg > massef
comparison help_html/source/publishHelp.m @ 0:e34a535b9af0
Initial beta release.
author | Christopher Hummersone <c.hummersone@surrey.ac.uk> |
---|---|
date | Thu, 02 Mar 2017 09:44:08 +0000 |
parents | |
children | bdd77fe783e4 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e34a535b9af0 |
---|---|
1 function publishHelp | |
2 | |
3 outdir = [MASSEF.dir filesep 'help_html' filesep]; | |
4 | |
5 options = struct(... | |
6 'outputDir',outdir, ... | |
7 'evalCode',false ... | |
8 ); | |
9 | |
10 publish('help_Index.m',options); | |
11 publish('help_MASSEF.m',options); | |
12 publish('help_MASSEF_evaluate.m',options); | |
13 publish('help_MASSEF_execute.m',options); | |
14 publish('help_MASSEF_install.m',options); | |
15 publish('help_MASSEF_save.m',options); | |
16 publish('help_MASSEF_start.m',options); | |
17 publish('help_MASSEFresults.m',options); | |
18 publish('help_MASSEFresults_algorithmInfo.m',options); | |
19 publish('help_MASSEFresults_filter.m',options); | |
20 publish('help_MASSEFresults_input.m',options); | |
21 publish('help_MASSEFresults_merge.m',options); | |
22 publish('help_MASSEFresults_mixtureInfo.m',options); | |
23 publish('help_Separators.m',options); | |
24 publish('help_Example.m',options); | |
25 | |
26 builddocsearchdb(outdir) |