Use timer to run script every ten seconds

40 次查看(过去 30 天)
I have a script that I want to execute automatically every ten seconds indefinitely until I tell it to stop. The script is called 'KelEdge'. I tried to figure out the code but I am having difficulty. Here is what I have:
function t = autoVIX()
t = timer;
t.StartFcn = @autoVIXstart;
t.TimerFcn = @runKelEdge;
t.StopFcn = @autoVIXCleanup;
t.Period = 10;
t.TasksToExecute = inf;
t.ExecutionMode = 'fixedRate';
end
function autoVIXstart(KelEdge,~)
KelEdge;
end
function runKelEdge(KelEdge,~)
KelEdge;
end
function autoVIXCleanup(KelEdge,~)
disp('Stopping KelEdge.')
delete(KelEdge)
end
Thanks in advance for all the help.
  1 个评论
Stephen23
Stephen23 2015-9-25
It would be much better if you used fucntions instead of scripts. Functions have many advantages over scripts, e.g. encapsulation, abstraction, their own workspaces. It makes code easier to write and test when you use functions.

请先登录,再进行评论。

回答(1 个)

Walter Roberson
Walter Roberson 2015-9-25
t = timer;
t.Period = 10;
t.TasksToExecute = inf;
t.ExecutionMode = 'fixedRate';
t.TimerFcn = @(src, event) run('KelEdge');
start(t)
I would recommend changing KelEdge into a function instead of a script. If you have it accept two arguments, then even if it ignores the arguments you could code as
t.TimeFcn = @KelEdge;
you cannot do this for a script because you cannot create a handle to a script, only a handle to a function.
  2 个评论
Cary
Cary 2015-9-25
编辑:Cary 2015-9-25
Thanks...I don't understand the inputs to the timer function, I don't have a src or event, just a script...also when I run this, it runs infinitely i.e. it never stops and I can't stop it. What did I do wrong?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by