MATLAB:基类的导入包
我有一个基类 A 和一个派生类 B,它们存储在以下文件夹结构中。
+myPackage (package Path)
@A ( folder of class A )
A.m ( filename of class )
@B
B.m
现在我想使用具有以下头的 B 类,
classdef B < A
不幸的是,这不起作用,因为它们位于不同的文件夹中,并且我无法像这样导入:
import myPackage.*
classdef B < A
是否可以在不丢失文件夹组织的情况下解决此问题?
i have a base class A and a derived class B which are stored in the following folder structures.
+myPackage (package Path)
@A ( folder of class A )
A.m ( filename of class )
@B
B.m
Now i want to use class B which has the following head
classdef B < A
unfortunately this does not work because they are in different folders and i cannot import like this:
import myPackage.*
classdef B < A
Is it possible to solve this without loosing the folder organisation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想如果你写
它应该有效。
I think if you write
it should work.