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

SDRN Lab

The document is a lab assignment on generating phase modulation using MATLAB. It provides an introduction to phase modulation techniques and the goal of demonstrating phase modulation in MATLAB. It includes the theory of phase modulation, MATLAB code to generate a phase modulated signal, and a question asking students to submit the results. The code generates a carrier signal, message signal, and phase modulates the carrier using the message signal by varying the instantaneous phase. It then plots the signals.

Uploaded by

mairaislam
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)
108 views2 pages

SDRN Lab

The document is a lab assignment on generating phase modulation using MATLAB. It provides an introduction to phase modulation techniques and the goal of demonstrating phase modulation in MATLAB. It includes the theory of phase modulation, MATLAB code to generate a phase modulated signal, and a question asking students to submit the results. The code generates a carrier signal, message signal, and phase modulates the carrier using the message signal by varying the instantaneous phase. It then plots the signals.

Uploaded by

mairaislam
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

Software defined radio network DUET

Date: ________________

OPEN ENDED LAB

LAB # 15 TO GENERATE A PHASE MODULATION TECHNIQUE USING


MATLAB.

LEARNING OUTCOME:

Upon successful completion this experiment, the student will be able to phase
modulation technique.

EQUIPMENT:
 MATLAB 2015a

LEARNING OUTCOMES:

 Upon successful completion of the lab, students will


be able to
 LO1: Understand the phase modulation technique.

THEORY:

Cognitive Radio (CR) is an adaptive, intelligent radio and network technology that can
automatically detect available channels in a wireless spectrum and change transmission
parameters enabling more communications. Spectrum sensing is the most important procedure
for the operation of cognitive radio systems. To overcome the shortcomings of the conventional
spectrum sensing techniques, considerable attention has been recently focused on the use of
Modulation Classification (MC) for spectrum sensing. It relies on the fact that all primary users
employ one modulation scheme. In this lab we use phase modulation technique. Phase
modulation (PM) is a method of impressing data onto an alternating-current (AC) waveform by
varying the instantaneous phase of the wave. This scheme can be used with analog or digital
data.

Lab #07 Department Of Telecommunication Engineering


Software defined radio network DUET

CODING:

clear all
close all
t = 0:0.01:1; % time variable
fc = 5; % carrier frequency
%------------------------------------------
% create message signal m(t)
m = sin(2*pi*t);
%------------------------------------------
kp = pi/2; % phase deviation constant
%------------------------------------------------
% modulating the carrier with the message signal
carrier = cos(2*pi*fc*t);
modulated = cos(2*pi*fc*t + kp*m);
%------------------------------------------------
%------------------------------------------------
% Plotting the signals
plot(t,m,'b',t,carrier,'r',t,modulated,'k--')
axis([0 1 -1.5 1.5]);
xlabel('Time(seconds)');
ylabel('Amplitude(volt)');
title('Phase modulation');
legend('Message','Carrier','Modulated');

Lab Tasks:
Qno.1 Submit the above result.

Lab #07 Department Of Telecommunication Engineering

You might also like