MATLAB:基类的导入包

发布于 2024-12-20 22:27:09 字数 374 浏览 3 评论 0原文

我有一个基类 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

硪扪都還晓 2024-12-27 22:27:09

我想如果你写

classdef B < mypackage.A

它应该有效。

I think if you write

classdef B < mypackage.A

it should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文