How to store .m files within a package folder

7 ビュー (過去 30 日間)
TADA
TADA 2018 年 10 月 24 日
コメント済み: David Saidman 2019 年 4 月 4 日
I want to store my files within a package.
I have ~30 classes in this package and would like to organize them in sub-folders logically.
The thing is I want them to be public, but I don't want to make the sub-folder a package because i'd like to avoid the nested namespaces in this situation if possible.
as far as I can see the documentation only describes nesting private folders and +package folders/@class folders.
is it possible to have nested folders within a package with public functions?

採用された回答

Philip Borghesani
Philip Borghesani 2018 年 10 月 25 日
Not the way you are thinking of it however you can organize it this way:
myCommonStuff/+mypackage %basic stuff
myAddOnStuff/+mypackage %extra stuff that I want to keep separate
Now add both myCommonStuff and myAddOnStuff to the MATLAB path and all functions or classes will appear in mypackage. Classes in myAddOnStuff are free to inherit from those in myCommonStuff.
  2 件のコメント
TADA
TADA 2018 年 10 月 25 日
Neat workaround, thanks!
David Saidman
David Saidman 2019 年 4 月 4 日
thats really clever, thanks. itll do

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by