timer function is not executing the function i am providing ,please help me with this?

조회 수: 7 (최근 30일)
this is in script window:
function ritik
for x=1:10
start(t)
stop(t)
disp(x)
end
this is in command window:
>> global t
>> t=timer('timerfcn',ritik,'startdelay',2)
Error using ritik
Too many output arguments.
>>

답변 (3개)

LO
LO 2019년 6월 10일
편집: LO 2019년 6월 10일
ritik does not seem to be a matlab function, could you post your code ?

Shivank Anchal
Shivank Anchal 2019년 6월 10일
function ritik
for x=1:10
start(t)
stop(t)
disp(x)
end
>> global t
>> t=timer('timerfcn',ritik,'startdelay',2)
  댓글 수: 3
Shivank Anchal
Shivank Anchal 2019년 6월 10일
>> t=timer('timerfcn',@(x,y)disp(rand),'executionmode','fixedrate','period',1)
t =
Timer Object: timer-39
Timer Settings
ExecutionMode: fixedRate
Period: 1
BusyMode: drop
Running: off
Callbacks
TimerFcn: @(x,y)disp(rand)
ErrorFcn: ''
StartFcn: ''
StopFcn: ''
>> start(t)
0.8147
0.9058
0.1270
0.9134
0.6324
0.0975
0.2785
>> stop(t)
Shivank Anchal
Shivank Anchal 2019년 6월 10일
This code print random numbers,after every one 1 second....NOW i want to print the whole numbers ,each printing one second after printing a number.you can run the above code to understand me.

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


Steven Lord
Steven Lord 2019년 6월 10일
t=timer('timerfcn',ritik,'startdelay',2)
This attempts to call the ritik function with 0 input arguments and 1 output argument and use the output argument from that call as the TimerFcn for the timer being created on this line. But your ritik function cannot return any output arguments, so MATLAB throws an error.
If you want MATLAB to call ritik as the TimerFcn for the timer specify it as a function handle.
t=timer('timerfcn',@ritik,'startdelay',2)
However, as stated in the "Creating Callback Functions" section on this documentation page, "When you create a callback function, the first two arguments must be a handle to the timer object and an event structure." Your ritik function does not accept any input arguments, and so does not satisfy the requirements imposed upon a TimerFcn by the timer object. You could use an anonymous function as an "adapter" (see the table in the "Specifying the Value of Callback Function Properties" on the documentation page I linked above) to bridge the gap between the signature the timer object expects its TimerFcn to have and the signature your ritik function actually has.
But looking more closely at your ritik function, I'm not sure what exactly you're trying to do with your timer. It won't have access to the global variable t (and I strongly recommend avoiding global variables!) and all it does is try to start and stop the timer repeatedly.
If you explain why you're trying to use a timer in this situation we may be able to help you achieve that goal.

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by