How can i use the Offset 16QAM or Offset 64 QAM in communication toolbox - Matlab 2015b.

2 views (last 30 days)
I am using toolbox communication of Matlab 2015b version. How can i use Offset 16QAM or Offset 64 QAM in this toolbox? There is only OQPSK (comm.OQPSKModulator). Thank you in advanced.

Accepted Answer

Mike McLernon
Mike McLernon on 9 Nov 2015
You can build up the offset QAM transmitter by doing the following:
  1. Create the 16QAM or 64QAM signal with the Rectangular QAM Modulator Baseband block (in Simulink) or the comm.RectangularQAMModulator System object (in MATLAB).
  2. Filter the signal with an appropriate pulse shaping filter -- a raised cosine filter would be a common choice. Interpolate by 4, 8, or some other even number.
  3. Manually delay the quadrature channel of the QAM signal by half of the interpolation factor.
  1 Comment
Hase
Hase on 9 Nov 2015
Edited: Hase on 9 Nov 2015
Hi Mr. Mike McLernon,
Thank you very much for your great support. I do step by step instructions but the constellation is incorrect. Maybe i compose the Matlab code is not properly. Could you help me to check it?
Thank you very much.
Van.
%%% Here is Matlab code for 16 OQAM %%
M = 16; % Modulation order
k = log2(M); % Bits/symbol
n = 2000; % Transmitted bits nSamp = 8; % Samples per symbol, Interpolate factor
EbNo = 10; % Eb/No (dB)
hMod = comm.RectangularQAMModulator(M,'BitInput',true);
span = 10; % Filter span in symbols
rolloff = 0.25; % Rolloff factor
hTxFilter = comm.RaisedCosineTransmitFilter('RolloffFactor',rolloff, ... 'FilterSpanInSymbols',span,'OutputSamplesPerSymbol',nSamp);
fvtool(hTxFilter,'impulse');
x = randi([0 1],n,1); % data binary
modSig = step(hMod,x); % 16 QAM symbol
txSig = step(hTxFilter,modSig); % apply the RC filter with nSamp = 4
hdelay = dsp.Delay(nSamp/2); % delay object
q_channel = step(hdelay,imag(txSig)); % delay Q channel by nSamp/2 oqam_sig = real(txSig) + 1i*q_channel; % 16 OQAM signal
scatterplot(txSig); scatterplot(oqam_sig);

Sign in to comment.

More Answers (2)

chandra sekhar uppu
chandra sekhar uppu on 8 Sep 2016
How can we get intrinsic interfernce OQAM transmiison at particular time index? thanks in advance

preet kaur
preet kaur on 19 Apr 2017
how can i use window function in ofdm?

Community Treasure Hunt

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

Start Hunting!