필터 지우기
필터 지우기

Hello all, I am interested to know how can plot real time sine wave graph of speech signal and also would like to know how to implementation of LPF in app designer.

조회 수: 2 (최근 30일)
I would be so greateful, if anyone will help me out in logical way. thank you

답변 (1개)

Sai Kiran
Sai Kiran 2023년 3월 6일
편집: Sai Kiran 2023년 3월 6일
Hi,
As per my understanding you want to plot the real time speech signal in matlab.
Please follow the below code to record any audio and to plot the signal.
recObj=audiorecorder;
recDuration = 5; % duration in seconds
disp("Begin speaking.")
recordblocking(recObj,recDuration);
disp("End of recording.")
play(recObj);
y = getaudiodata(recObj);
plot(y);
For futher information on analyzing the signals , refer to the documentation https://in.mathworks.com/help/matlab/import_export/record-and-play-audio.html
You can design the Low pass filter according to your application, refer to the documentation.
You can add any MATLAB code in the app designer as a callback function. It depends on your design requirements.
I hope it helps!
Thanks
Sai Kiran Ratna
  댓글 수: 3
Sai Kiran
Sai Kiran 2023년 3월 9일
Hi,
In the app designer you can add a button which enables you to record the signal, for this you can add the code mentioned above to a specific button.
Please refer to the following link to get more info.
I hope it helps!
Thanks!
Kulbir
Kulbir 2023년 3월 21일
Hi , i am doing. and will reach out you in case of any query. than you very much

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Audio Processing Algorithm Design에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by