I have 2 paths :
C:\controller\functions\verifyModel.m
C:\OGVD\prod\KMLP\controller\controllerStatus.m
verifyModel.m
classdef verifyModel
methods(access=public)
function...
end
end
controllerStatus.m
classdef controllerStatus < verifyModel
.....
end
but when I run controllerStatus.m
, I got an error as the class I used isn't in the path
how could I add verifyModel
to the path ?