representation of the QPSK modulated signal
22 views (last 30 days)
Show older comments
Niloofar Jafarnia
on 29 Jun 2021
Commented: Niloofar Jafarnia
on 20 Jul 2021
I want the code that coresponde the functionality of the QPSK modulator block (simulink). I need to have the signal representation of The QPSK modulated signal that comes from the 'pskmod' funktion,I multiplied it simply by a sine wave but I am not shure if I should use a raised cosine filter instead. what I need at the end is the modulated QPSK signal that can be transmitted. here is my code:
M=4; % modulation order
data = randi([0,M-1],1,100);
Fc=100; % in Hz, carrier frequency
t=0:0.1:(10-0.1); % time step (carrier sine wave)
P=0;
modsig = pskmod(data,M,P); % PSK modulation
carrier = sin(2*pi*Fc*t);% carrier sine wave
sigpsk = carrier.*modsig;
figure
plot(t,sigpsk);
xlabel('Time');
ylabel('Amplitude');
title('psk Modulated Data');
0 Comments
Accepted Answer
Arthi Sathyamurthi
on 19 Jul 2021
Hello Niloofar,
To get the code corresponding to the functionality of the QPSK modulator block, use comm.QPSKModulator.
To get a modulated QPSK signal that can be transmitted implement all the blocks of the transmitter. You can use the raised cosine filtering function to implement the raised cosine filter after carrier multiplication for pulse shaping before transmission.
More Answers (0)
See Also
Categories
Find more on QPSK in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!