Why is MATLAB code excution in a function not in a sequence like in the main script?
2 views (last 30 days)
Show older comments
Yi Wan
on 22 Oct 2018
Commented: Walter Roberson
on 22 Oct 2018
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 Comments
Kevin Chng
on 22 Oct 2018
How about this?
result=myfun();
function results=myfun()
robot = [];
InitParameters;
results=robot;
end
Accepted Answer
Walter Roberson
on 22 Oct 2018
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 Comments
Walter Roberson
on 22 Oct 2018
Run does itself deliberately assign values in the base workspace, but the script being executed might.
More Answers (0)
See Also
Categories
Find more on Code Generation 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!