extracthelp

版本 1.4.0.0 (3.5 KB) 作者: Andrey Popov
Extract the help information of all M functions in a sub-folder
948.0 次下载
更新时间 2013/7/8

查看许可证

extracthelp extracts the help lines of all M-files found int he current folder and writes them in corresponding files in a specified sub-folder.

The function is very useful in combination with the 'pcode'. The function pcode creates a pre-parsed P-files, that can be distributed to users who should not have access to the original code. However the P-files do not preserve the help information of the original functions. The 'extracthelp' function exports only the help information, thus allowing the users to use the 'help' function as usual.

extracthelp() % create the help M-files in a \phelp folder
pcode *.m % convert all .M files to .P files
movefile('*.p','.\phelp')

The \phelp folder contains thus the files you can safely distribute.

引用格式

Andrey Popov (2024). extracthelp (https://www.mathworks.com/matlabcentral/fileexchange/21431-extracthelp), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2006a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Adding custom doc 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.4.0.0

- Bugfix;
- Updated help; Comments
- mkdir and movefile functions instead of "! md ..."

1.3.0.0

Updated author information and file finctions

1.2.0.0

Fixed bug by creating and accessing folders under Unix/Mac.

1.1.0.0

License changed from GPL to BDS inside the M file.

1.0.0.0

Added functionality.