Matlab does not recognize my subclass unless my current folder is that class' folder?
4 次查看(过去 30 天)
显示 更早的评论
I made a subclass to an existing matlab class and save it in that matlab class' folder. Unless I change my current folder in my workspace to that folder, tells me there is an undefined variable or class. How do I solve this?
0 个评论
回答(2 个)
Sean de Wolski
2015-7-21
Add the directory containing the class to the path:
doc pathtool
doc addpath
Or in the Current Folder browser, right-click and select add to path.
0 个评论
Steven Lord
2015-7-21
So you have a class directory @superclass and inside the directory @superclass you created a directory @subclass?
I don't believe that's supported; instead you should create a directory @subclass in the same directory that contains @superclass.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Search Path 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!