You are on page 1of 6

EXPERIMENT NO.

11:

Simulating and analyzing the PSK (Phase shift keying)

using Matlab and Simulink

Objectives
 To compute the PSK modulation and demodulation

Description:
Phase-shift keying (PSK) is a digital modulation process which conveys data by changing

(modulating) the phase of a reference signal (the carrier wave). The modulation occurs by

varying the sine and cosine inputs at a precise time. It is widely used for wireless LANs, RFID

and Bluetooth communication.

Any digital modulation scheme uses a finite number of distinct signals to represent digital data.

PSK uses a finite number of phases; each assigned a unique pattern of binary digits. Usually,

each phase encodes an equal number of bits. Each pattern of bits forms the symbol that is

represented by the particular phase. The demodulator, which is designed specifically for the

symbol-set used by the modulator, determines the phase of the received signal and maps it back

to the symbol it represents, thus recovering the original data. Here is the code

Lab task 1

Matlab code

clc;

c11 = sin(2*pi*60*t);
t = 0:0.0001:0.15;

m = square (2*pi*10*t);

c22 = sin((2*pi*60*t)+ pi);

s2 = (m.*c11);

for i = 1:1500

if(m(i)==1)

s2(i)=c11(i);

else

s2(i)=c22(i);

end

end

figure(3);

subplot(411);

plot(m);

subplot (412);

plot(c11);

subplot (413);

plot (c22);

subplot(414);

plot(s2);

output
Lab Task 2

Simulink model
Circuit diagram of PSK
POST LAB TASK

1-Write a matlab code to demodulate the above given signal?

2-What is Phase Shift Keying?

3-What is the simplest PSK technique?

4-What is bi-phase modulation?

.5-Compare bandwidth of ASK, PSK and FSK?

6-Compare power of ASK, PSK and FSK?

7-Compare Probability of error of ASK, PSK and FSK?

8-Compare Signal to Noise Ratio of ASK, PSK and FSK?


9-Write the advantages of PSK?

10-Write the disadvantages of PSK?

.11-Write the uses of PSK?

12-Make the circuit of PSK on Simulink or Multisim

You might also like