Main Content

Phase Modulation

Phase modulation (PM) is a linear baseband modulation technique in which the message modulates the phase of a constant amplitude signal. Communications Toolbox™ software includes these functions, System objects, and blocks to modulate digital baseband signals with these modulation methods:

  • Binary, quadrature, and general phase shift keying (PSK)

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

  • Offset quadrature phase shift keying (OQPSK)

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+ϕn),

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)=eiϕn=cos(πn).

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

You can modulate and demodulate higher-order PSK constellations. The complex baseband form for an M-ary PSK signal using 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.

References

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

[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 16, no. 2 (February 1998): 260–64. https://doi.org/10.1109/49.661114.

See Also

Functions

Objects

Blocks

Related Examples

More About