Borrar filtros
Borrar filtros

Nested function not assigning value to global variable

1 visualización (últimos 30 días)
Pal Szabo
Pal Szabo el 1 de Sept. de 2017
Comentada: John D'Errico el 1 de Sept. de 2017
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 comentarios
Pal Szabo
Pal Szabo el 1 de Sept. de 2017
I'm trying to avoid them and write better code, now I've run into this problem and interested how to solve it.
John D'Errico
John D'Errico el 1 de Sept. de 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.

Iniciar sesión para comentar.

Respuesta aceptada

KSSV
KSSV el 1 de Sept. de 2017
You have to assign p...you have not yet assigned it.
a=9;
b=2;
global p
p = rand ;
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
  3 comentarios
KSSV
KSSV el 1 de Sept. de 2017
I was thinking you want to make a global variable in the main code and use it in every function without passing it....your criteria is different.....in this case....call it as a output from the function..not a global variable...
Pal Szabo
Pal Szabo el 1 de Sept. de 2017
Alright, thanks!

Iniciar sesión para comentar.

Más respuestas (1)

Stephen23
Stephen23 el 1 de Sept. de 2017
Editada: Stephen23 el 1 de Sept. de 2017
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.

Categorías

Más información sobre Variables en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by