Matlab real time audio processing
问题 I'm trying to record my microphone input and process it at the same time. I tried with a loop with this inside: recordblocking(recorder, 1); y = getaudiodata(recorder); % any processing on y But while I'm doing something with y , I'm losing information since not recording continuously. Is there something I could do to continuously record sound coming in my microphone, store it in some kind of buffer, and process chunks of it at the same time? A delay isn't a problem, but I really need the