sound generation using MATLAB

조회 수: 14 (최근 30일)
kartik singh
kartik singh 2019년 3월 14일
댓글: Stephan 2019년 3월 14일
clc;
clear all;
close all;
fs=24000; %sampling frequency
f=100000; %frequency of the sound wave
t=0:1/fs:10;
y=sin(2*pi*f*t);
sound(y);
I generated a sound wave using the above code. Why is it audible? I set its frequency to more than 20kHz which is the limit of the human ear.
what's wrong here? Does it have to do with the speakers? or the code?

채택된 답변

Image Analyst
Image Analyst 2019년 3월 14일
It's called aliasing. Sampling at rate lower than the Nyquist frequency will give signals that look like they are oscillating at a lower frequency. See the Wikipedia article on it: Wikpedia on Aliasing
Aliasing_between_a_positive_and_a_negative_frequency.png
  댓글 수: 1
kartik singh
kartik singh 2019년 3월 14일
Thanks a lot. I understood what was wrong.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Stephan
Stephan 2019년 3월 14일
Hi,
think about your sampling frequency. Can it really work to sample a signal of 100kHz with a sample rate of 24kHz? Or do you get some useless stuff?
Consider:
fs=2.4; %bad sampling frequency
fs2 = 240 % good sampling frequency
f=10; %frequency of the sound wave
t=0:1/fs:2;
t2 = 0:1/fs2:2;
y=sin(2*pi*f.*t);
y2=sin(2*pi*f.*t2);
plot(t,y,t2,y2)
which gives the following plot:
bad_fs_vs_good_fs.PNG:
This does not look rigth for the blue line which corresponds to a much too low sample frequency. The higher sample rate gives a correct result.
Best regards
Stephan
  댓글 수: 2
kartik singh
kartik singh 2019년 3월 14일
Thanks for the answer. My query got cleared.
Stephan
Stephan 2019년 3월 14일
Did you notice, that you can accept useful answers and or vote for them? Feel free to do so, if the contributions were useful.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Measurements and Spatial Audio에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by