DepSubFun

Locate dependent sub-functions of m-files.
ダウンロード: 2.4K
更新 2005/9/8

ライセンスがありません

function funnames = DepSubFun(CS,ExcludeRoot);

DEPSUBFUN Locate dependent functions of an M-file.But, unlike DEPFUN, it will look *inside* m-files for *subfunctiosn* and the ability to excludes files that are in the MATLAB root (default).

The intent of finding the subfunctions is to prevent repetition and to identify which functions need to be updated so if you fix one copy, then you will know there are other copies out there that need to be fixed.

The intent of excluding files in the MATLAB root is to find which files must be included in a distribution so they may be uploaded to the MATLAB File Exchange.

INPUTS:
CS, a cellstring of file names (the files you want analysed)

ExcludeRoot, 0 if you want all function names, 1 if you only want the ones not in the MATLAB root.

OUTPUTS
funnames, a cellstring of functions and subfunctions

USAGE
>>d=dir('*.m');
>> DepSubFun({d.name})

See DEPFUN

Keyworkds depfun, dependent, function, subfunction, name

It's not fancy, but it works

引用

Michael Robbins (2024). DepSubFun (https://www.mathworks.com/matlabcentral/fileexchange/7434-depsubfun), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R14SP1
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersSearch Path についてさらに検索

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0

?