Why is MATLAB code excution in a function not in a sequence like in the main script?
2 次查看(过去 30 天)
显示 更早的评论
So here is the example:
% I run the initparameter file first
% the file contains a rigidbodytree object called robot
% Then define results = robot, it works fine
run('InitParameters.m');
results=robot;
% However, if I put this into a function
% The 'initparameter' file is not excuted first.
% This gives me an error indicating that robot is not found.
% The 'initparameter' file is not executed at all.
result=myfun();
function results=myfun()
run('InitParameters.m');
results=robot;
end
So is there a way to have the code run in sequence in a function just like in the main script? Maybe there is a duplicate to this question, but I can't seem to describe this properly... Please excuse me.
7 个评论
Kevin Chng
2018-10-22
How about this?
result=myfun();
function results=myfun()
robot = [];
InitParameters;
results=robot;
end
采纳的回答
Walter Roberson
2018-10-22
run() is a function that determines which file is being invoked and then does an evalin('caller') of the file.
When the script being executed is executed from the command line, the 'caller' will be the base workspace, and any assignin('base') that are executed will result in variables that are directly available to the calling environment because the calling environment is also the base workspace.
When the script being executed is executed from a function, the 'caller' will be the function that run was called from, and any assignin('base') that are executed would result in variables that are in the base workspace but not in the workspace of the function.
The easiest fix for this direct issue would be
function results=myfun()
InitParameters;
results = evalin('base', 'robot');
end
4 个评论
Walter Roberson
2018-10-22
Run does itself deliberately assign values in the base workspace, but the script being executed might.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Code Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!