如何在MATLAB路径中添加类

时间:2013-09-20 12:11:39

标签: matlab class oop matlab-class

我在文件夹中有两个类:

  • C:\控制器\功能\ VerifyModel.m

  • C:\ OGVD \ PROD \ KMLP \控制器\ controllerStatus.m

VerifyModel.m

classdef verifyModel < matlab.unittest.TestCase
    methods(access=public)
        function...
    end
end

controllerStatus.m

classdef controllerStatus < verifyModel
    .....
end

但是当我运行controllerStatus.m时,我收到一个错误,因为我使用的类不在路径中。 我试过添加C:\controller\functions\@VerifyModel\VerifyModel.m

我可以做什么,以便在路径中添加类?

0 个答案:

没有答案