0% found this document useful (0 votes)
115 views

Frequency Modulation and Demodultion (FM) : All All

This document describes an experiment to verify the waveforms of frequency modulation and demodulation using MATLAB. The aim is to modulate a carrier signal with a modulating signal and observe the modulated and demodulated signals. The apparatus used is a personal computer and MATLAB 2010. The program written in MATLAB generates the modulating signal, carrier signal, frequency modulated signal, and demodulated signal and plots them in different subplots for analysis and observation of the waveforms.

Uploaded by

rambabu
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
115 views

Frequency Modulation and Demodultion (FM) : All All

This document describes an experiment to verify the waveforms of frequency modulation and demodulation using MATLAB. The aim is to modulate a carrier signal with a modulating signal and observe the modulated and demodulated signals. The apparatus used is a personal computer and MATLAB 2010. The program written in MATLAB generates the modulating signal, carrier signal, frequency modulated signal, and demodulated signal and plots them in different subplots for analysis and observation of the waveforms.

Uploaded by

rambabu
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

FREQUENCY MODULATION AND DEMODULTION(FM)

AIM: To verify the waveforms of frequency modulation and demodultion.

APPARATUS:

1. Personal Computer.
2. MATLAB 2010.

PROGRAM:

clc;
clear all;
close all;
fs=8000;
fc=100;
t=linspace(0,1,10000);
x=sin(2*pi*10*t);
dev=50;
y=fmmod(x,fc,fs,dev);
z=fmdemod(y,fc,fs,dev);
subplot(4,1,1),
plot(t,x)
xlabel('time(sec)');
ylabel('amplitude in volts(v)');
title('MODULATING SIGNAL');
subplot(4,1,2),
plot(t,sin(2*pi*fc*t))
FREQUENCY MODULATION AND DEMODULTION(FM)

xlabel('time(sec)')
ylabel('amplitude in volts(V)');
title('CARRIER SIGNAL');
subplot(4,1,3),
plot(t,y)
xlabel('time(sec)');
ylabel('amplitude in volts(V)');
title('FREQUENCY MODULATED SIGANL');
subplot(4,1,4),
plot(t,z)
xlabel('time(sec)');
ylabel('amplitude in volts(V)');
title('DEMODULATED SIGNAL');

RESULT:

You might also like