Why does declaring a global variable take so much time?
Mostrar comentarios más antiguos
I have a function in from a larger program that I profiled in order to try and find some places to gain some speed. The global declaration in the function below takes up by far the most time. Can anyone tell me why this would take so much time and suggest possible solutions? Unfortunately, giving it as an argument to the function is not an option.

1 comentario
Stephen23
el 13 de Ag. de 2020
"As far as I was aware ode45 needs an ode function that has just two arguments."
"However, looking a bit deeper, there is a way to pass more arguments."
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 10 de Feb. de 2014
Try mechanisms such as
setter: setappdata(0,'P', P);
your function: P = getappdata(0, 'P');
4 comentarios
José-Luis
el 10 de Feb. de 2014
Isn't that like putting makeup on a global to make it look pretty? :) Also it would involve modifying the parent function, which Alexander apparently can't. Or am I missing something?
Walter Roberson
el 10 de Feb. de 2014
It isn't just putting makeup on if it runs faster. I have not timed it so I do not know what the relative speeds are.
José-Luis
el 10 de Feb. de 2014
That might well be, but it would have the disadvantages of a global, save that you need to explicitly call it. Might make debugging a pain. Oh well...
Walter Roberson
el 10 de Feb. de 2014
One of the problems with global variables is that people accidentally reuse the name for local purposes, thus overwriting the global version. If the only way to overwrite the global version is to code a setappdata() call, then that is not going to happen accidentally.
Categorías
Más información sobre Programming en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!