Introduction To Communication System: Exp# 01 Exp. Name: Amplitude Modulation

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

ETE 321

Introduction to Communication System


Exp# 01
Exp. Name: Amplitude Modulation
1. Theoretical Background:
Amplitude Modulation is characterized by the fact that the amplitude A of the
career
Ac cos (c t+ c) is varied in proportion to the baseband signal m (t). The
frequency c and the phase c are constant.
If the modulating signal is m (t) = Am cos (m t+ m) = Am cos (2fmt+ m) and
the career signal is c (t) = Ac cos (c t+ c) = Ac cos (2fct+ c). If there is no
phase difference between the career signal and message signal then = 0.
Then the modulation signal will be
AM = m (t) * c (t) = Ac (1 = m (t)) cos ct

{FIGURE}

2. Instruments: MATLAB
3. Experimental setup:
CODE
t=0:0.001:1;
mt=8*cos(2*pi*5*t);
fc=100;
ct=5*cos(2*pi*fc*t);
am=mt.*ct;
figure (a)
plot(t,mt);
figure (2)
plot (t,ct);
figure (3)

plot (t,am);

Graph
Baseband Signal

{FIGURE}

Career Signal

{FIGURE}

Modulated Signal

{FIGURE}

4. Experimental procedure:
Step 1: Write the code in the M-file properly
Step 2: Save the code in the appropriate directory with the file type .m.
Step 3: Debug and run code and checking the command window to see is any
error occurred.

Step 4: Analyzing the figure

You might also like