Error using evalin Undefined function or variable 'var'.
49 次查看(过去 30 天)
显示 更早的评论
Hello all!
I'm trying to figure out why I keep getting the error: Undefined function or variable 'var'.
Here's my code:
function Port_callback(varargin)
GUI=varargin{numel(varargin)};
var=string(get(GUI.ed(1),'String'));
fprintf('Inserted USB Port: %s\n',var);
evalin('base',"Port=var;");
end
The string in var is printed to the command prompt using fprintf, however in the next line of code i keep getting the error undefined variable 'var'.
Any ideas on why this error keeps occurring?
0 个评论
采纳的回答
Jan
2023-3-9
编辑:Jan
2023-3-9
The variable var is created in the workspace of the callback function. It is not visible in other workspaces, e.g. in the command window (the "base" workspace).
This would work:
assignin('base', 'Port', var)
Note that poking variables magically in other workspaces is a frequent souce of bugs and unexpected behavior. If someone else is using your GUI, it is hard to understand, where the value of Port is coming from. Everything, which impedes the debugging and maintenance, is the enimy of the programmer.
A clean solution is to store the value of the Port inside the GUI (see handles struct or UserData) and trigger the further processing from another callback. The indirection over the command window increases the complexity.
3 个评论
Steven Lord
2023-3-9
In this particular case, that assignin call could cause you quite a bit of confusion later on in your MATLAB session. In the example below your assignin call would take the place of the explicit assignment to the variable var.
var = 42;
Now suppose you wanted to compute the variance of a data set. What's the right way to do that?
data = 1:10;
var(data) % You might expect 9.1667, but you get an error
Ah, we've improved the error message in some recent release. In older releases the second line of the error message didn't appear, leaving you to wonder why the var function misbehaved.
Jan
2023-3-10
@Steven Lord: The assigned variable is "Port", not "var". The latter ist used internally in the callback only.
更多回答(1 个)
Voss
2023-3-9
This line
evalin('base',"Port=var;");
evaluates "Port=var;" in the base workspace. Apparently you don't have a variable called "var" in the base workspace.
If you want to have a variable "Port" in your base workspace with the value of "var" that is in the Port_callback workspace, you can
assignin('base','Port',var);
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!