Mercurial > hg > ishara
view sched/schedabs.m @ 0:672052bd81f8
Initial partial import.
author | samer |
---|---|
date | Wed, 19 Dec 2012 22:38:28 +0000 |
parents | |
children |
line wrap: on
line source
function schedabs(t,action) t=t*1e9; t1=sleeptill_hr(t); dt=action((t1-t)*1e-9); while ~isempty(dt) t=t+dt*1e9; t1=sleeptill_hr(t); dt=action((t1-t)*1e-9); end