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?

 Akzeptierte Antwort

Star Strider
Star Strider am 23 Okt. 2019

1 Stimme

This is more a philosophical question than a mathematical one.
The frequency of the original signal remains ‘fs’ regardless, The frequency of the generated tone is whatever is passed to the sound function, here either ‘fs’ or ‘2*fs’.
At least that is the way I interpret it.

2 Kommentare

Ban Coder
Ban Coder am 23 Okt. 2019
I get it!! Thanks a lot!!
Star Strider
Star Strider am 23 Okt. 2019
As always, my pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte

Version

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by