How to create OQPSK modulated signal?

조회 수: 21 (최근 30일)
Jared
Jared 2014년 12월 3일
댓글: Khushbu Kishnani 2021년 3월 15일
I want to modulate a vector of bits (0's & 1's) using OQPSK modulation.
I set up the modulator:
mod=comm.OQPSKModulator('BitInput', true);
The data is modulated:
modData=step(mod,bit_vector);
This results in a complex double. I can view the constellation diagram using scatterplot(modData) which is correct.
At this point, how do I construct the modulated carrier signal from this IQ data output?

답변 (1개)

Tasos Giannoulis
Tasos Giannoulis 2017년 1월 30일
Hi Jared,
What you obtain is a modulated OQSPK signal. I assume you are looking for a filtered waveform that gives you a ring-shaped constellation.
If this is the case, then because oqpskmod and comm.OQPSKModulator internally upsample the signal (see doc note) as of R2016b, then it's better if you instead jointly filter and modulate the signal on your own:
a. Split bits to odd (I) and even (Q)
b. Filter both I & Q streams, e.g., with raised-cosine or half-sine filtering
c. Delay the even-bit stream (Q) by half a simple and make a complex waveform I + j*Q
Tasos
  댓글 수: 1
Khushbu Kishnani
Khushbu Kishnani 2021년 3월 15일
Hi Tasos
Thank you for the answer. It helped me. Can you please also mention the steps to demodulate OQPSK signal? I want downsampled constellation of OQPSK for modulation classification.
Thank you
Khushbu

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Modulation에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by