Friday 4 November 2016

Simulate BPSK or PSK technique Using Scilab

// BPSK or PSK --> Binary Phase Shift Keying

t=[0:0.01:5*%pi];
A=5;
wc=2;

Vm=A.*squarewave(t);
Vc=A.*sin(wc.*t);
Vp= Vm.*Vc;

subplot(3,1,1);
plot(t,Vm, 'black');

subplot(3,1,2);
plot(t,Vc, 'black');

subplot(3,1,3);
plot(t,Vp, 'black');

// Output
Simulate BPSK or PSK technique Using Scilab.
                                 BPSK or PSK --> Binary Phase Shift Keying

No comments:

Post a Comment