這邊主要是提供一個處理Timer的工具函數,這個函數用來啓動、中止和刪除Timer對象markdown
function DealTimer(Type,TimerName) % 處理Timer工具類 % by qm % Email:305638715@qq.com % 2015/09/09 % Type : 動做類型 1 :啓動Timer 2 : 中止Timer 3:刪除Timer %% 輸入輸出預處理 if nargin < 1 || isempty(Type) Type = 3; end if nargin < 2 TimerName = ''; end if 1 == Type if ~isempty(TimerName) ts=timerfind('Name',TimerName); else ts=timerfind; end if length(ts)>0 start(ts); end end if 2 == Type if ~isempty(TimerName) ts=timerfind('Name',TimerName); else ts=timerfind; end if length(ts)>0 stop(ts); end end if 3 == Type if ~isempty(TimerName) ts=timerfind('Name',TimerName); else ts=timerfind; end if length(ts)>0 stop(ts); delete(ts); end end
版權聲明:本文爲博主原創文章,未經博主容許不得轉載。函數