Phase Modulation

Phase modulation is a linear baseband modulation technique in which the message modulates the phase of a constant amplitude signal. Communications Toolbox™ provides modulators and demodulators for these phase modulation techniques:

  • Phase shift keying (PSK) — Binary, quadrature, and general PSK

  • Differential phase shift keying (DPSK) — Binary, quadrature, and general DPSK

  • Offset QPSK (OQPSK)

To modulate input data with these techniques, you can use MATLAB® functions, System objects, or Simulink® blocks.

Baseband and Passband Simulation

Communications Toolbox supports baseband and passband simulation methods; however, the phase shift keying techniques support baseband simulation only.

A general passband waveform can be represented as

Y1(t)cos(2πfct+θ)Y2(t)sin(2πfct+θ),

where fc is the carrier frequency and θ is the initial phase of the carrier signal. This equation is equal to the real part of

[(Y1(t)+jY2(t))ejθ]exp(j2πfct).

In a baseband simulation, only the expression within the square brackets is modeled. The vector y is a sampling of the complex signal

(Y1(t)+jY2(t))ejθ.

BPSK

In binary phase shift keying (BPSK), the phase of a constant amplitude signal switches between two values corresponding to binary 1 and binary 0. The passband waveform of a BPSK signal is

sn(t)=2EbTbcos(2πfct+π(1n));n{0,1},

where:

  • Eb is the energy per bit.

  • Tb is the bit duration.

  • fc is the carrier frequency.

In MATLAB, the baseband representation of a BPSK signal is

sn(t)=cos(πn);n{0,1}.

The BPSK signal has two phases: 0 and π.

The probability of a bit error in an AWGN channel is

Pb=Q(2EbN0),

where N0 is the noise power spectral density.

QPSK

In quadrature phase shift keying, the message bits are grouped into 2-bit symbols, which are transmitted as one of four phases of a constant amplitude baseband signal. This grouping provides a bandwidth efficiency that is twice as great as the efficiency of BPSK. The general QPSK signal is expressed as

sn(t)=2EsTscos(2πfct+(2n+1)π4);n{0,1,2,3},

where Es is the energy per symbol and Ts is the symbol duration. The complex baseband representation of a QPSK signal is

sn(t)=exp(jπ(2n+14));n{0,1,2,3}.

In this QPSK constellation diagram, each 2-bit sequence is mapped to one of four possible states. The states correspond to phases of π/4, 3π/4, 5π/4, and 7π/4.

To improve bit error rate performance, the incoming bits can be mapped to a Gray-coded ordering.

Binary-to-Gray Mapping

Binary SequenceGray-coded Sequence
0000
0101
1011
1110

The primary advantage of the Gray code is that only one of the two bits changes when moving between adjacent constellation points. Gray codes can be applied to higher-order modulations, as shown in this Gray-coded QPSK constellation.

The bit error probability for QPSK in AWGN with Gray coding is

Pb=Q(2EbN0),

which is the same as the expression for BPSK. As a result, QPSK provides the same performance with twice the bandwidth efficiency.

Higher-Order PSK

In MATLAB, you can modulate and demodulate higher-order PSK constellations. The complex baseband form for an M-ary PSK signal using natural binary-ordered symbol mapping is

sn(t)=exp(jπ(2n+1M));n{0,1,,M1}.

This 8-PSK constellation uses Gray-coded symbol mapping.

For modulation orders beyond 4, the bit error rate performance of PSK in AWGN worsens. In the following figure, the QPSK and BPSK curves overlap one another.

DPSK

DPSK is a noncoherent form of phase shift keying that does not require a coherent reference signal at the receiver. With DPSK, the difference between successive input symbols is mapped to a specific phase. As an example, for binary DPSK (DBPSK), the modulation scheme operates such that the difference between successive bits is mapped to a binary 0 or 1. When the input bit is 1, the differentially encoded symbol remains the same as the previous symbol, while an incoming 0 toggles the output symbol.

The disadvantage of DPSK is that it is approximately 3 dB less energy efficient than coherent PSK. The bit error probability for DBPSK in AWGN is Pb = 1/2 exp(Eb/N0).

OQPSK

Offset QPSK is similar to QPSK except that the time alignment of the in-phase and quadrature bit streams differs. In QPSK, the in-phase and quadrature bit streams transition at the same time. In OQPSK, the transitions have an offset of a half-symbol period as shown.

The in-phase and quadrature signals transition only on boundaries between symbols. These transitions occur at 1-second intervals because the sample rate is 1 Hz. The following figure shows the in-phase and quadrature signals for an OQPSK signal.

For OQPSK, the quadrature signal has a 1/2 symbol period offset (0.5 s).

The BER for an OQPSK signal in AWGN is identical to that of a QPSK signal. The BER is

Pb=Q(2EbN0),

where Eb is the energy per bit and N0 is the noise power spectral density.

Soft-Decision Demodulation

All Communications Toolbox demodulator functions, System objects and blocks can demodulate binary data using either hard decisions or soft decisions. Two soft-decision algorithms are available: exact log-likelihood ratio (LLR) and approximate LLR. Exact LLR provides the greatest accuracy but is slower, while approximate LLR is less accurate but more efficient.

Exact LLR Algorithm

The log-likelihood ratio (LLR) is the logarithm of the ratio of probabilities of a 0 bit being transmitted versus a 1 bit being transmitted for a received signal. The LLR for a bit, b, is defined as:

L(b)=log(Pr(b=0|r=(x,y))Pr(b=1|r=(x,y)))

Assuming equal probability for all symbols, the LLR for an AWGN channel can be expressed as:

L(b)=log(sS0e1σ2((xsx)2+(ysy)2)sS1e1σ2((xsx)2+(ysy)2))

VariableDescription

r

Received signal with coordinates (x, y)

b

Transmitted bit (one of the K bits in an M-ary symbol, assuming all M symbols are equally probable)

S0

Ideal symbols or constellation points with bit 0, at the given bit position

S1

Ideal symbols or constellation points with bit 1, at the given bit position

sx

In-phase coordinate of ideal symbol or constellation point

sy

Quadrature coordinate of ideal symbol or constellation point

σ2

Noise variance of baseband signal

σx2

Noise variance along in-phase axis

σy2

Noise variance along quadrature axis

Note

Noise components along the in-phase and quadrature axes are assumed to be independent and of equal power, that is, σx2=σy2=σ2/2.

Approximate LLR Algorithm

Approximate LLR is computed by using only the nearest constellation point to the received signal with a 0 (or 1) at that bit position, rather than all the constellation points as done in exact LLR. It is defined in [2] as:

L(b)=1σ2(minsS0((xsx)2+ (ysy)2)minsS1((xsx)2+ (ysy)2))

References

[1] Rappaport, Theodore S. Wireless Communications: Principles and Practice. Upper Saddle River, NJ: Prentice Hall, 1996, pp. 238–248.

[2] Viterbi, A. J. “An Intuitive Justification and a Simplified Implementation of the MAP Decoder for Convolutional Codes,” IEEE Journal on Selected Areas in Communications. Vol. 16, No. 2, Feb. 1998, pp. 260–264

Related Topics