Error "Unable to resolve name" issue
이전 댓글 표시
I recently updated to 2019b and since then I have been having problems with certain functions. For example I get the following error:
Unable to resolve the name mSIPRO.file.gConfig.load.
The folder structure is below and the function is located in +gConfig

I have had this folder structure and this particular function for many years and have been using it on a regular basis without issue.
I tried changing the name to "gLoad" but I got the same error.
Is this due to some change to 2019b, or due to an installation problem, or is it likely I have made a change that has made my code unusable?
댓글 수: 2
Ravneet Kaur
2021년 6월 10일
function y=temperature(K)
global Kp;
global Ki;
global Kd;
Kp(1)=0;
Ki(1)=0;
Kd(1)=0;
Kp(2)=K(1);
Ki(2)=K(2);
Kd(2)=K(3);
x=out.out();
s=size(x);
e=0;
This is my code for matlab and i am facing the same issue of unable to resolve the name out.out Can anyone please help me with this? I have tried the restoredefaultpath command but that does not helped me.
Walter Roberson
2021년 6월 10일
You have not used "import" to import any java path or package, and it is not obvious to us that you have a package directory +out or a class directory @out in your MATLAB path. "out" is not a class or package provided by Mathworks, and you do not appear to have any struct or class variable named out in your workspace.
Please also read http://www.mathworks.com/help/matlab/math/parameterizing-functions.html and http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.28s.29.3Fand get rid of those global() variables if possible.
채택된 답변
추가 답변 (2개)
kannan R
2023년 10월 10일
1 개 추천
Unable to resolve the name 'ij01366.xml'.
댓글 수: 1
Walter Roberson
2023년 10월 10일
You have a line of code that probably looks something like
readstruct(ij01366.xml)
when you would instead need
readstruct('ij01366.xml')
thai doan
2025년 4월 13일
0 개 추천
Error:Unable to resolve the name 'data.Connection.SerialModule'.
댓글 수: 1
Walter Roberson
2025년 4월 13일
That does not appear to be anything provided by Mathworks.
There is a vague possibility that it has something to do with serial modules for TI2000 systems.
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!