Calling timer function from within another function

1 visualización (últimos 30 días)
Giles
Giles el 29 de Jun. de 2011
I want to use the timer function within another function. Moreover, it must have access to the values of variables within that function in order for its callback commands to execute. However, the timer function always works in the base workspace, even if called from a function (which seems extremely counterintuitive, but there it is). So, how do I allow it to know about the variables within the function it's being called from? For e.g., the following function doit should display 2 every second for 5 seconds, but it won't because the timer executes in the base workspace and x is not present in that workspace. (Also, I want to avoid having to explicitly assign a copy of x in the base workspace from within the function doit, such as by using the assignin command - there should be a better way to do it than that.)
function doit
x=2;
t=timer('TimerFcn', 'x', 'ExecutionMode', 'fixedRate', 'Period', 1);
start(t)
pause(5)
stop(t)
delete(t)

Respuestas (3)

Sean de Wolski
Sean de Wolski el 29 de Jun. de 2011
doc timerfind

Paulo Silva
Paulo Silva el 29 de Jun. de 2011
function doit
x=2;
t=timer('TimerFcn', @fun, 'ExecutionMode', 'fixedRate', 'Period', 1);
function fun(obj,event)
x
end
start(t)
pause(5)
stop(t)
delete(t)
end
  2 comentarios
Walter Roberson
Walter Roberson el 29 de Jun. de 2011
Or very nearly equivalently:
function doit
x=2;
t = timer('TimerFcn', @(obj,event) x, 'ExecutionMode', 'fixedRate', 'Period', 1);
start(t)
pause(5)
stop(t)
delete(t)
end
Paulo Silva
Paulo Silva el 29 de Jun. de 2011
Nice one Walter, I must remember that one, thanks

Iniciar sesión para comentar.


Giles
Giles el 1 de Jul. de 2011
Thanks. So wait, just because you happen to specify the callback as a function handle (or perhaps using the cell array syntax for specifying functions and input arguments) suddenly timer runs inside the function doit (from where it is called), whereas otherwise it runs in the base workspace? Why????????? How would anybody know to do this? This is so arbitrary. Why does it not simply run where it is called? Arg.
  1 comentario
Paulo Silva
Paulo Silva el 1 de Jul. de 2011
Not that arbitrary, please read the documentation so you can better understand
doc function_handle

Iniciar sesión para comentar.

Categorías

Más información sobre Low-Level File I/O 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