Matlab 처리 Timer 도구 함수

1668 단어
Timer를 처리하는 도구 함수를 제공합니다. 이 함수는 Timer 대상을 시작, 정지, 삭제하는 데 사용됩니다.
function DealTimer(Type,TimerName)
%  Timer 
% by qm
% Email:[email protected]
% 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

판권 성명: 본고는 블로거의 오리지널 문장으로 블로거의 허락 없이 전재할 수 없습니다.

좋은 웹페이지 즐겨찾기