programming in matlab (how to process in real time)

前端 未结 3 1227
眼角桃花
眼角桃花 2020-12-18 11:01

i am trying to make a spectrogram in matlab, here is my code:

% Record your voice for 100 seconds.
recObj = audiorecorder;
disp(\'Start speaking.\')
recordb         


        
3条回答
  •  醉话见心
    2020-12-18 11:40

    The most obvious thing to do is place your code in a loop to keep updating the figure. But be aware that Matlab is not really designed for this sort of task, so I don't know how much success you'll have. Have you tried Googling for free software which does this for you? I'd be surprised if there was nothing out there which didn't do this already.

提交回复
热议问题