Frequency and Sampling Frequency
이전 댓글 표시
Which is the frequency of a tone heard when played with twice the original sampling frequency?
For example, we have this tone:
>> fs=24000; % Sampling frequency
>> t=0:1/fs:1;
>> x=cos(2*pi*1000*t); % frequency = 1000 Hz
>> sound(x, fs);
There we see that the frequency is 1000 Hz, but if we play the tone with twice its sampling frequency:
>> sound(x, 2*fs);
Which is the frequency of the tone then?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 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!