Frequency and Sampling Frequency
Mostra commenti meno recenti
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?
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Audio I/O and Waveform Generation in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!