view scripts/@audiorecorder/isrecording.m @ 19510:e1f98e402a7e

New files - @audiorecorder and @audioplayer classes * @audiorecorder: new files implementing methods for the audiorecorder class * @audioplayer: new files implementing methods for the audioplayer class
author Vytautas Jančauskas <unaudio@gmail.com>
date Wed, 11 Sep 2013 22:40:18 +0300
parents
children
line wrap: on
line source

## -*- texinfo -*-
## @deftypefn{Function File} isrecording (@var{recorderObj})
## Returns 1 if the audiorecorder object is currently recording audio.
## Returns 0 otherwise.
## @end deftypefn

function result = isrecording(recorder)
    result = __recorder_isrecording__(struct(recorder).recorder);
endfunction