The document provides instructions for 4 MATLAB tasks:
1) Generate an SSB modulated signal without functions and compare to ssbmod command results
2) Demodulate the SSB signal without and with ssbdemod command
3) Generate an FM modulated signal with triangular message and plot in time and frequency domains
4) Use diff.m, fir1.m, and filter.m functions to demodulate an FM signal.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
24 views4 pages
COMM LAB - SSBandFM - P3
The document provides instructions for 4 MATLAB tasks:
1) Generate an SSB modulated signal without functions and compare to ssbmod command results
2) Demodulate the SSB signal without and with ssbdemod command
3) Generate an FM modulated signal with triangular message and plot in time and frequency domains
4) Use diff.m, fir1.m, and filter.m functions to demodulate an FM signal.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4
Task-1
• Write a MATLAB program to generate SSB modulated signal and
frequency spectrum for the given parameters below without using an inbuilt function (use mathematical expression) Fm=20Hz (Message Signal Frequency) Am=0.7 (Amplitude of message signal); Fc=200Hz(Carrier Signal Frequency); Ac=1 (Amplitude of carrier signal); Fs=8kHz (Sampling frequency) [Plot message signal; carrier signal; SSB modulated signal and frequency spectrum of SSB using subplots and note down the USB and LSB frequencies] Take 1000 sampling points to sample the message signal Fm. • Explore the ssbmod command in Matlab and plot the SSB modulated signal; compare it with the modulated signal generated above. Task-2 • Write a MATLAB program to generate SSB demodulated signal from the modulated signal obtained from the task 1. • Explore the ssbdemod command in Matlab and plot the SSB demodulated signal. Task-3
Write a MATLAB code for an FM modulated signal wherein the message signal is a triangular signal as defined above and chose an appropriate carrier signal frequency.
Plot FM signal in time and frequency domain.
Task-4 Use MATLAB inbuilt function such as diff.m, fir1.m, and filter.m to perform FM demodulation. Type help in command window for description on how to use these functions.