I want to use timer object in Matlab Mobile while connected using matlab cloud, but it not work when i execute start () function except one. what can i do an other way execute after a while continuously? Thanking in advance.

2 views (last 30 days)
I explain in question section.

Answers (1)

Steven Lord
Steven Lord on 4 May 2018
Did you set the ExecutionMode property of the timer object to a value other than the default, which is 'singleShot'?
  3 Comments
Md. Habibur Rahman Rahman
Edited: Walter Roberson on 5 May 2018
>>t=timer
>>set(t,'executionMode', 'fixedSpacing') %%I had used other execution modes but result was same.
>>set(t, 'timerFcn', 'disp("Hello world!")')
>>start(t)
Hello world!
(it's not run again like computer. run in background as period)
>>

Sign in to comment.

Communities

More Answers in the  Distance Learning Community

Categories

Find more on MATLAB Support Package for IP Cameras in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!