Error in debug mode: Method not defined or removed from search path.
24 次查看(过去 30 天)
显示 更早的评论
I recently updated from R2013a to R2016a and now my way of experimenting in debug-mode causes an error, which I cannot remember I ever seen before (my memory might be short). The error is: "Method ... not defined ... or removed from ... search path."
Example from a session:
- Execution is halted by a break-point (and possibly stepped) into a public method of the class, h5pia.StringTree.
- I want to try a call to the public method, find_wildcard, of the same class. methods(this) confirms that the method exists
- I made an interactive call, ix_b01 = this.find_wildcard('B01'), which caused the error. See below.
- I clicked Continue and got the error again. And clicked Quit
- Back at the >> prompt calls to several of my functions returned "... not found".   plot(1:12) worked.
- The GUI, Set Path, indicated that the path was okay.
- Finally, rehash path solved the problem - temporarily(?).
...
K>> methods(this)
Methods for class h5pia.StringTree:
StringTree find_root2node is_child strcmp
add_node find_wildcard is_leaf strcmp_wildcard
...
K>> ix_b01 = this.find_wildcard( 'B01' )
Error using h5pia.StringTree/find_wildcard
Method 'find_wildcard' is not defined for class 'h5pia.StringTree' or is removed from
MATLAB's search path.
here I gave up and hit continue
Error using TestResult/addError
Method 'addError' is not defined for class 'TestResult' or is removed from MATLAB's search
path.
Error in TestCase/run (line 64)
this.result.addError( me );
Error in PiaUnit/RunCase (line 358)
saRslt.( curCase.Name ) = curCase.run( caList, fh );
Error while evaluating UIControl Callback
K>>
Ouestions:
- Has anyone else encountered this issue?
- Is there a way to avoid this error when experimenting in debug-mode?
0 个评论
回答(2 个)
Arnab Sen
2016-4-29
Hi per,
If rehash path resolves the issue at least fro the current session, you can save the path by executing the following command in MATLAB Command Window:
>> rehash path
>>savepath
For more details, refer to the following link:
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Software Development Tools 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!