Nested function not assigning value to global variable
Show older comments
My main script invites a subfunction, which then invites different subfunctions. I want these subfunctions to modify global variables. A simpified example:
a=9;
b=2;
global p
myfunc(a,b);
display Result:
p
function [varargout] = myfunc(a,b);
arr=[a;b];
varargout={arr};
end
mysecondfunction(arr);
prod = arr(1)*arr(2);
p = prod;
end
When the main script calls p again it is empty. Why is this so and how can I fix it?
3 Comments
Stephen23
on 1 Sep 2017
"Nested function not assigning value to global variable"
Why are you using both nested functions and global variables?
Just use the nested functions. Global variables are evil, and should be avoided.
Pal Szabo
on 1 Sep 2017
John D'Errico
on 1 Sep 2017
UGH!!!!!!! Ugly, nasty code.
You solve the problem most easily by not using globals at all.
It is a bad idea to use globals in the first place. This is yet another reason why. You don't need globals. Most new users think they do, and eventually learn why not. But they make for nasty, bad code that will be difficult to debug.
As bad an idea is to use variables named prod, or other names that are already used for function names. When you name them that, the function prod will no longer work properly.
Accepted Answer
More Answers (1)
Get rid of the global.
Globals do not solve anything, no matter how much beginners love using them.
It is not clear what your (buggy, non-working, incomplete) code is supposed to do, but making a nested function work correctly is very simple _when you avoid using evil global:
function p = test2
p = [];
myfunc(9,2);
function myfunc(varargin);
p = prod([varargin{:}]);
end
end
and tested:
>> test2()
ans = 18
And remember in future: if you even think of using global then your code design needs to be improved.
Categories
Find more on Programming 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!