下面的程序包含一個timer
對象定義及其啓動命令。然後程序繼續執行其他語句。Matlab定時器的回調
我的問題是TimerFcn
是否會在0.01
秒後被完全調用,還是會等到定時器回調函數的for循環完成後纔會觸發?
% My timer object
t = timer('TimerFcn',@(x,y)G2(z), 'StartDelay',0.01);
start(t);
% Other program statements
for i=1:m
...
end
我要引用你到[這個問題](http://www.mathworks.com/matlabcentral/answers/10394-timer-and-interruptible-off-button-callback-priority-preemption)在MATLAB的答案。還有一個問題,就在我認爲是相關的那一天:http://stackoverflow.com/q/24368424/97160 – Amro