MATLAB: If there is startat, is there also stopat

MATLABstartattimer

why is there a startat function for timer, but there is none for stopping (such as stopat *if there's any) ?
thank you..

Best Answer

Because it is trivial to write your own?
stopat = @(Timer,stoptime) startat(timer('StartFcn', @(src,evt) stop(Timer)), stoptime);