Mercurial > hg > ishara
view sched/isrunning.m @ 42:ae596261e75f
Various fixes and development to audio handling
author | samer |
---|---|
date | Tue, 02 Dec 2014 14:51:13 +0000 |
parents | 7357e1dc2ad6 |
children |
line wrap: on
line source
% isrunning - true if Matlab timer object is running % % isrunning :: timer => bool. function f=isrunning(T), f=isvalid(T) && strcmp(get(T,'Running'),'on');