Amplitude modulation as a function of signal frequency and sampling rate
Show older comments
For an overview of the topic I create a stream of signals with frequencies 100:100:10k.
I set the sampling rate at 19990, on purpose, to demonstrate the strange amplitude modulation across all frequencies (At this rate it appears quite trippy to me).
This effect of course can be reduced by increasing sampling rate, however it is still present at any higher sampling rate too.
Can someone tell me how this effec is called and where it can be found in the literature. It must be kind a repeating pattern according to common multiples of frequency and sampling rate.
I heard of the nyquist-shannon theorem in terms of acquiring time-series data. But what about generating a data stream just like here?
Many thanks in advance!




CODE:
> fs = 19990;
> duration = 100;
> values = 0:1/fs:(duration*1e-3);
> stimsignal = [];
> for i= 1:100
> stimsignal = [stimsignal zeros(1,round(fs*0.01)) ((amp*sin(2*pi*i*1e2*values)))];
> end
> plot(stimsignal');
Accepted Answer
More Answers (0)
Categories
Find more on Waveform Generation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!