Can I have subdirectories in a +package directory?
19 次查看(过去 30 天)
显示 更早的评论
I would like to know if it is possible to add subdirectories to a matlab package directory (denoted by a preceeding '+' in the directory name). Often I want to split up my functions within a package into logical units in directories, but without needing them to each have their own subnamespace. In other words, is it possible to have:
/+pkg/toplevelfun.m
/+pkg/subdir/lowerlevelfun.m
and have both called in my matlab code as:
pkg.toplevelfun
pkg.lowerlevelfun
My tests indicate this is not possible (at least in 2014a). Is this impossible, and if so, is there some technical reason it could not be implemented by TMW?
2 个评论
Michael Häußler
2018-7-17
I am looking for the same feature as you! This would give me the opportunity to make my packages a lot clearer in their arrangement.
Come on Matlab Team ;)
Jim Svensson
2019-5-14
The mechanism you want does not exist. But you achieve a similar thing by putting the differrent folder groups first and multiple packages of the same name inside, like so:
<root>/utils/+pkg_foo/find_data.m
<root>/apps/+pkg_foo/plot_data.m
addpath/genpath(<root>))
d = pkg_foo.find_data();
pkg_foo.plot_data(d);
采纳的回答
更多回答(2 个)
Philip Joergensen
2018-11-15
Not sure why it does not make sense to place both functions in the root of the package in the case you describe.
I figured out, if you do not mind having a namespace for each subdirectory, you can have subpackages in your package:
/+pkg/toplevelfun.m
/+pkg/+subpkg/lowerlevelfun.m
And then calling the lowerlevelfun would be
pkg.subpkg.lowerlevelfun(...)
Which seems to make good sense in this use case, as it is easy to group functions into easy to remember and meaningful namespaces.
3 个评论
Philip Joergensen
2018-11-15
That is reasonable, each to their own.
It just does not seem to me to be the best practice/most logical step to group functions in a structure not used consistently.
Organizing a function into
+pkg/<some_path_to_function_dir>/lowerlevelfunc.m
called by
pkg.lowerlevelfunc(...)
makes it take effort to figure out the location of the function. Also, it begs the question how should functions with the same name be handled.
Michael Häußler
2018-11-15
There is also the possibility to use private folders within the package. The functions/classes within that folder are however only visible to the files within the package....
Still not what you want exactly, but I actually use that a lot now to have small "helper functions" within the package organized at a different place:
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!