octave: Recorder Properties

 
 33.4.3 Properties
 -----------------
 
 The remaining two methods allow you to read or alter the properties of
 audiorecorder objects.
 
  -- : VALUE = get (RECORDER, NAME)
  -- : VALUES = get (RECORDER)
      Return the VALUE of the property identified by NAME.
 
      If NAME is a cell array, return the values of the properties
      corresponding to the elements of the cell array.  Given only the
      recorder object, return a scalar structure with values of all
      properties of RECORDER.  The field names of the structure
      correspond to property names.
 
  -- : set (RECORDER, NAME, VALUE)
  -- : set (RECORDER, PROPERTIES)
  -- : PROPERTIES = set (RECORDER)
      Set the value of property specified by NAME to a given VALUE.
 
      If NAME and VALUE are cell arrays of the same size, set each
      property to a corresponding value.  Given a structure with fields
      corresponding to property names, set the value of those properties
      to the corresponding field values.  Given only the recorder object,
      return a structure of settable properties.