在Matlab 2012a win7下, 使用Matlab从麦克风中获取音频数据.
原文出自 matlabworks
% Record your voice for 5 seconds.
recObj = audiorecorder;
disp('Start speaking.')
recordblocking(recObj, 5); %保存5秒
disp('End of Recording.');
% Play back the recording.
play(recObj);
% Store data in double-precision array.
myRecording = getaudiodata(recObj);
% Plot the waveform.
plot(myRecording);
本文介绍如何在Windows 7系统中使用Matlab 2012a版本从麦克风录制音频,并提供完整的代码示例。包括录制、播放录音以及将录制的数据存储为双精度数组。
2500





