How do I apply the raised cosine filter to an OQPSK signal generated by the OQPSKMOD function using the RCOSFLT function from the Communications Toolbox?
Afficher commentaires plus anciens
I want to apply a raised cosine filter to pulse-shape an OQPSK signal generated from the OQPSKMOD function. OQPSK signals generated by the OQPSKMOD function inherently up-samples the input samples by 2 to model the half symbol offset. The up-sampling is done by repeating the sample twice.
However, there is a problem when pulse-shaping the OQPSK modulated signal. For example, when I use the following code:
x = randint(100,1,4);
y = real(oqpskmod(x));
rcosflt(y,2,4,'fir/sqrt',0.3,3);
The command pads two zeroes after each y sample and generates an incorrect result.
Réponse acceptée
Plus de réponses (1)
Tasos Giannoulis
le 29 Sep 2017
Modifié(e) : Tasos Giannoulis
le 29 Sep 2017
Indeed, this is a limitation of pre-R2017b versions of the Communications System Toolbox. However, from R2017b and on, you can use comm.OQPSKModulator and comm.OQPSKDemodulator System objects, which perform joint OQPSK modulation and filtering. Thus, upsampling is performed during the filtering operation of the modulator, not before; samples are no longer repeated.
Your code should now look like this (starting from R2017b):
x = randi([0, 3], 100, 1);
mod = comm.OQPSKModulator('PulseShape', 'Root raised cosine', 'RolloffFactor', 0.3)
y = mod(x);
plot(real(y));
Catégories
En savoir plus sur Modulation dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!