#Amplitude modulatio using matlab
Explore tagged Tumblr posts
Text
generate AM signal in time domain and frequency spectrum using MATLAB
Below is a good starting point for your program: % Clear and initialize variables clearclose allhold offN=2^18; % Number of sample pointsFs=2^14; % sample frequency is 16,384 Hz is to be power of 2% because we are using the FFT and not the DFTTs=1/Fs;fc=1000; % carrier frequency is 1 kHzfm=100; Ac=10; % message frequency is 100 Hz, amplitude is 10mu2=1.0; % 100% modulationmu1=0.5; % 50%…
View On WordPress
0 notes