Wed 15 Jan 2014 07:17:46 PM UTC, original submission:
error: 'audiorecorder' undefined near line 1 column 10
>> disp('Start speaking.')
Start speaking.
>> recordblocking(recObj, 5);
error: 'recObj' undefined near line 2 column 16
error: evaluating argument list element number 1
>> disp('End of Recording.');
End of Recording.
>>
>> % Play back the recording.
>> play(recObj);
error: 'recObj' undefined near line 3 column 6
error: evaluating argument list element number 1
>>
>> % Store data in double-precision array.
>> myRecording = getaudiodata(recObj);
error: 'recObj' undefined near line 3 column 28
error: evaluating argument list element number 1
>>
>> % Plot the waveform.
>> plot(myRecording);
error: 'myRecording' undefined near line 3 column 6
error: evaluating argument list element number 1
>>
>>
>> recObj = audiorecorder;
warning: the 'audiorecorder' function is not yet implemented in Octave
Please read `http://www.octave.org/missing.html' to learn how you can
contribute missing functionality.
error: 'audiorecorder' undefined near line 3 column 10
|