0

我有 2 条路径:

  • C:\controller\functions\verifyModel.m
  • C:\OGVD\prod\KMLP\controller\controllerStatus.m

验证模型.m

classdef verifyModel 
    methods(access=public)
        function...
    end
end

控制器状态.m

classdef controllerStatus < verifyModel     
   .....
end

但是当我运行时controllerStatus.m,我得到一个错误,因为我使用的类不在路径中我怎么能添加verifyModel到路径中?

4

1 回答 1

0

在使用 controllerStatus 之前:

addpath('C:\controller\functions\')

此外,您可能想放入一个@ folder. 只要这些文件夹可见,它们就会被添加到路径中,因此它们是当前路径 ( pwd) 的子文件夹。

或者将 'C:\controller\functions\' 添加到您的静态 matlab 路径中,我不推荐这样做。

另请参阅此答案

于 2013-09-20T09:42:50.097 回答