Calling timer function from within another function

조회 수: 1 (최근 30일)
Giles
Giles 2011년 6월 29일
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)

답변 (3개)

Sean de Wolski
Sean de Wolski 2011년 6월 29일

Paulo Silva
Paulo Silva 2011년 6월 29일
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
Walter Roberson
Walter Roberson 2011년 6월 29일
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 2011년 6월 29일
Nice one Walter, I must remember that one, thanks

댓글을 달려면 로그인하십시오.


Giles
Giles 2011년 7월 1일
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
Paulo Silva
Paulo Silva 2011년 7월 1일
Not that arbitrary, please read the documentation so you can better understand
doc function_handle

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Low-Level File I/O에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by