You are on page 1of 3

Design and study a baseband communication system

Title:- Design and study a baseband communication system


Name-Yana Sane
PRN-21070123085
Aim:- To design and study a baseband communication system
Apparatus: MATLAB.

Theory:-

Baseband is the transmission of a signal in its original, unmodulated form. A baseband


signal can be analog (e.g., originating from a telephone) or digital (e.g., originating from
a computer). In telecommunications and signal processing, baseband is the range of
frequencies occupied by a signal that has not been modulated to higher frequencies.
Baseband signals typically originate from transducers, converting some other variable
into an electrical signal. Baseband network technology is used in various types of
networks, including Ethernet and token ring local area networks. With multiplexing, a
transmission channel derives additional paths over a baseband channel. A baseband
signal transmits data streams as analog signals using modulation technology.

PROCEDURE:-

• Open MATLAB
• Open new M-file
• Type the program
• Save in current directory
• Compile and Run the program
• For the output see command window\ Figure window

MATLAB Code
% program for dsbsc modulation and demodulation
close all
clear all
clc
t =0:0.000001:.001;
Vm= 1;
Vc= 1;
fm = 2000;
fc= 50000;
m_t = Vm*sin(2*pi*fm*t);
subplot(4,1,1);
plot(t,m_t);
c_t = Vc*square(2*pi*fc*t);
subplot(4,1,2);
plot(t,c_t);
subplot(4,1,3);
s_t = m_t.*c_t;
hold on;
plot(t,s_t);
plot(t,m_t,'r:');
plot(t,-m_t,'r:');
hold off;
r = s_t.*c_t;
[b a] = butter(1,0.01);
mr= filter(b,a,r);
subplot(4,1,4);
plot(t,mr);

Output:
Result:
In this experiment we designed and studied a baseband communication system
using a double side band suppressed carrier .
We successfully modulated the message signal to get waveforms and demodulated it
to recover the original message , with the help of low pass filter we received a noise
free demodulated signal and understood the concept and practical use of DSB-SC
and obtained modulated and demodulated waveforms

You might also like