0% found this document useful (0 votes)
13 views2 pages

Uzair Lab 02

Uploaded by

Muhammad Ahsan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views2 pages

Uzair Lab 02

Uploaded by

Muhammad Ahsan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

JUNE 3, 2024

SUBMITTED BY: UZAIR ALI JAN


Submitted to: Saad Ijaz Majid
COMMUNICATION TECHNOLOGY

Lab Title: Amplitude Modulation of Message Signal And


Carrier Signal
Introduction:
Amplitude Modulation (AM) is a technique used in electronic
communication, primarily for transmitting information via a radio carrier wave.
In AM, the amplitude (signal strength) of the carrier wave is varied in
proportion to that of the message signal, such as an audio signal.
Equipment:
• MATLAB software
• PC
MATLAB Coding:
clc
t=0:0.001:7;
w=6; % message signal angular frequency
w1=60; % carrier signal angular frequency
a=30; % amplitude
a1=30;

Message=a*sin(w*t); % message signal


Carrier=a1*sin(w1*t); % carrier signal
modulate=Message.*Carrier; % amplitude modulation
subplot(3,1,1);
plot(t, Message);
title( ' Message Signal' ) ;
subplot(3,1,2);
plot(t, Carrier);
title( ' Carrier Signal' ) ;
subplot(3,1,3);
plot(t, modulate);
title( ' Modulated Signal output' ) ;
MATLAB Response:

You might also like