标签: matlab audio signal-processing
input = dsp.AudioRecorder; output = dsp.AudioPlayer; tic; while (toc < 5) stream = step(input); step(output, stream); plot(stream); drawnow; end
我正在创建一个matlab程序,我需要从USB麦克风录制和回放(实时)音频输入。这就是我所拥有的,但它不起作用。进来的数据都是0。