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?

 採用された回答

Star Strider
Star Strider 2019 年 10 月 23 日

1 投票

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 件のコメント

Ban Coder
Ban Coder 2019 年 10 月 23 日
I get it!! Thanks a lot!!
Star Strider
Star Strider 2019 年 10 月 23 日
As always, my pleasure!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeAudio I/O and Waveform Generation についてさらに検索

製品

リリース

R2015a

質問済み:

2019 年 10 月 23 日

コメント済み:

2019 年 10 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by