Method removed from matlab search path occurs in compiled program
Show older comments
Hi,
I have a compiled program running constantly, gathering data in a paper mill. Program starts up and works as expected but after several days (thousands of successful method calls), it may throw the following error:
Error using GuiConnectionClass/getCommand:
Method 'getCommand' is not defined for class 'GuiConnectionClass' or is removed from MATLAB's search path.
Has anyone seen this behaviour and understood it?
I have got this error twice in two weeks. I catch the error and try again but once the error occurs, it is persistent. Restarting the program solves the problem. I have not seen the problem in non-compiled code.
The affected method calls the built in webwrite to read the next command from a server:
function cmd = getCommand(c,side)
url = ['http://' c.address '/api/pulp_scan.get_cmd?side=' side];
options = weboptions('Timeout',10); % 0.5s is to short.
cmd = webwrite(url,options);
end
I am not performing any weird tricks. No messing with the path. No @functionPointers. GuiConnectionClass inherits only handle.
I suspect that the webwrite depends on something under the hood that has silently crashed. I traced webwrite down to matlab.internal.webservices.HTTPConnector and from there it turns into calls of java or .net objects.
3 Comments
Eduardo Gil
on 24 Apr 2019
Has anyone provided an answer here? We are experiencing the same problem.
Method 'predict' is not defined for class 'LinearModel' or is removed from MATLAB's search path.
We are running a linear regression in one function (fitlm), and passing the resulting object (from fitlm) to another function. Then we use "predict" in the second function to come up with a forecast. It works fine the Matlab environment, but the compiled code errors out as above.
Björn Skatt
on 25 Apr 2019
Eduardo Gil
on 25 Apr 2019
Hi Bjorn,
It is crashing every time - we are trying to get help from Mathworks. Appreciate your help though -
Tks,
Eduardo
Accepted Answer
More Answers (0)
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!