我在文件夹中有两个类:
C:\控制器\功能\ VerifyModel.m
C:\ OGVD \ PROD \ KMLP \控制器\ controllerStatus.m
classdef verifyModel < matlab.unittest.TestCase
methods(access=public)
function...
end
end
classdef controllerStatus < verifyModel
.....
end
但是当我运行controllerStatus.m
时,我收到一个错误,因为我使用的类不在路径中。
我试过添加C:\controller\functions\@VerifyModel\VerifyModel.m
我可以做什么,以便在路径中添加类?