problem regarding audio signal

조회 수: 1 (최근 30일)
k.v.swamy
k.v.swamy 2012년 8월 21일
hi all, can any one give me a solution,how to show that audio signal frequency lies between 20hz to 20khz.can i take the signal from any microphone and test the frequency in matlab.pl give me solution. regards k.v.swamy

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2012년 8월 21일
편집: Azzi Abdelmalek 2012년 8월 21일
here an example for recording your voice
% Record your voice for 5 seconds.
recObj = audiorecorder;
disp('Start speaking.')
recordblocking(recObj, 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);
  댓글 수: 7
Azzi Abdelmalek
Azzi Abdelmalek 2012년 8월 21일
configure your micro to your windows system. matlab will recognize it.
k.v.swamy
k.v.swamy 2012년 8월 21일
thank you very much sir.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Audio I/O and Waveform Generation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by