problem regarding audio signal
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
採用された回答
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
2012 年 8 月 21 日
configure your micro to your windows system. matlab will recognize it.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File 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!