Generating high frequency sine waves - weird amplitude modulation
4 次查看(过去 30 天)
显示 更早的评论
EDIT: I added another example as a zip-file of a figure: 100Hz to 10kHz, sampled at 48.4kHz. You can see prominent amplitude dips at 8kHz and 9600kHz. These amplitude effects are getting even worse with slight deviations from common sampling rate, e.g.19.99kHz instead of 20kHz.
Dear All,
I am supposed to generate sine wave signals for auditory stimulation in a range of 100Hz to 10kHz.
This is my code so far:
fs = 44100; % sampling rate
duration = 100; % in ms
values = 0:1/fs:(duration*1e-3);
stimsignal = []; % pre-allocate variable
for i= 1:100
stimsignal = [stimsignal zeros(1,round(fs*0.01)) sin(2*pi*i*1e2*values)]; % create signal train of 100ms sine wave chunks, 100 Hz up to 10kHz
end
It works all right, but as a result, the sine wave chunks higher than 800 Hz show weird amplitude modulation patterns. Can anyone give me some explanation for this and how to avoid it? Any alternative matlab function? OR is it a result of the Nyquists sampling theorem and it's there anyways... so you can only reduce it by increasing sampling rate?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/363904/image.png)
Thanks in advance,
Florian
2 个评论
采纳的回答
Mathieu NOE
2020-11-3
hello Florian
seems I have answered the same question from the same person in this post :
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Applications 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!