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

Uzair Lab 03

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 03

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 4, 2024

SUBMITTED BY: UZAIR ALI JAN


SUBMITTED TO: SAAD IJAZ MAJID
COMMUNICATION TECHNOLOGY

Lab Title: Frequency Modulation of Message Signal And


Carrier Signal
Introduction:
Frequency Modulation is a fundamental technique in modern communication,
allowing the transmission of high-quality audio and data signals by varying the
carrier frequency according to the message signal's amplitude.

Equipment:
• MATLAB software
• PC
MATLAB Coding:
clc
F=5;% message signal
F1=50; % carrier signal
t=0:0.001:1;
A=10;% amplitude
beta=10;
message=A*sin(2*pi*F*t);% message signal
carrier=A*sin(2*pi*F1*t); % carrier signal
modulate=A*cos(2*pi*F1*t+beta*message);
subplot(3,1,1)
plot( t , message)
title('M Signal');
subplot(3,1,2);
plot(t,carrier);
title('C Signal');
subplot(3,1,3);
plot(t, modulate);
title( ' Modulated output Signal' ) ;
MATLAB Response:

You might also like