representation of the QPSK modulated signal
21 ビュー (過去 30 日間)
古いコメントを表示
Niloofar Jafarnia
2021 年 6 月 29 日
コメント済み: Niloofar Jafarnia
2021 年 7 月 20 日
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 件のコメント
採用された回答
Arthi Sathyamurthi
2021 年 7 月 19 日
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.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で QPSK についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!