Skip to main content

OFDM Waveform with MATLAB Code

 

In OFDM (Orthogonal Frequency Division Multiplexing), we transmit multiple orthogonal subcarriers simultaneously. Since the subcarriers are orthogonal, they do not interfere with each other, which is one of the main advantages of OFDM. Practically, OFDM converts a wideband signal into multiple narrowband orthogonal subcarriers.

For typical wireless communication, if the signal bandwidth (or symbol duration) exceeds the coherence bandwidth of the channel, the signal experiences frequency-selective fading. Fading distorts the signal, making it difficult to recover the original information. By using OFDM, we transmit the same wideband signal across multiple orthogonal narrowband subcarriers, reducing the effect of fading.

For example, if we want to transmit a signal of bandwidth 1024 kHz, we can divide it into N = 8 subcarriers. Each subcarrier is then spaced by:

Δf = Total Bandwidth N = 1024 8 kHz = 128 kHz

Let N be the number of subcarriers. The subcarrier frequencies are centered around zero and range from:

fk = k Δf, k = -N2, , N2-1

So for our example, the subcarrier frequencies are:

fk = { -512, -384, -256, -128, 0, 128, 256, 384 } kHz

By using OFDM with these orthogonal subcarriers, the communication system becomes robust to frequency-selective fading, and the overall wideband signal can be transmitted and recovered smoothly.

MATLAB Code for Theoretical OFDM Sinc Spectra (Orthogonal)

clc;
clear;
close all;
% Parameters
N = 8;
fs = 1024; % Sampling frequency
T = N/fs;
delta_f = fs/N;
f = linspace(-fs/2, fs/2, 1024);
figure;
hold on;
grid on;
for k = -N/2:N/2-1
fk = k * delta_f;
S = T * sinc(T*(f - fk));
plot(f, abs(S),'LineWidth',1.5);
end
xlabel('Frequency (Hz)');
ylabel('Magnitude');
title('Theoretical OFDM Sinc Spectra (Orthogonal)');
 

 

 

MATLAB Code for Simulated OFDM Spectrum (Orthogonal Case)

clc;
clear;
close all;
% ===============================
% PARAMETERS
% ===============================
N = 8; % Number of subcarriers
fs = 1000; % Sampling frequency (Hz)
Nfft = 1024; % FFT size for smooth spectrum
Ts = 1/fs;
T = N/fs; % OFDM symbol duration (IMPORTANT)
delta_f = fs/N; % Subcarrier spacing (Fs/N)
fprintf('Subcarrier spacing = %.2f Hz\n', delta_f);
% ===============================
% TRANSMITTER
% ===============================
% Generate random QPSK data
data = randi([0 3],1,N);
symbols = exp(1j*pi/2*data); % QPSK mapping
% IFFT (Discrete OFDM generation)
ofdm_time = ifft(symbols, N);
% Time axis
t = (0:N-1)*Ts;
% ===============================
% SPECTRUM VISUALIZATION
% ===============================
OFDM_spectrum = fftshift(fft(ofdm_time, Nfft));
f_axis = linspace(-fs/2, fs/2, Nfft);
figure;
subplot(3,1,1)
stem(0:N-1, abs(symbols),'filled')
title('Transmitted QPSK Symbols (Frequency Domain)')
xlabel('Subcarrier Index')
ylabel('Magnitude')
grid on;
subplot(3,1,2)
plot(f_axis, abs(OFDM_spectrum)/max(abs(OFDM_spectrum)))
title('OFDM Spectrum (Orthogonal Case)')
xlabel('Frequency (Hz)')
ylabel('Normalized Magnitude')
grid on;
% ===============================
% RECEIVER (NO ICI)
% ===============================
received_symbols = fft(ofdm_time, N);
subplot(3,1,3)
stem(0:N-1, abs(received_symbols),'r','filled')
title('Recovered Symbols (Perfect Orthogonality)')
xlabel('Subcarrier Index')
ylabel('Magnitude')
grid on;
% ===============================
% PART 2: INTRODUCE FREQUENCY OFFSET (ICI)
% ===============================
freq_offset = 20; % 20 Hz frequency offset
ofdm_offset = ofdm_time .* exp(1j*2*pi*freq_offset*t);
received_ici = fft(ofdm_offset, N);
figure;
subplot(2,1,1)
stem(0:N-1, abs(received_symbols),'filled')
title('Recovered Symbols (No ICI)')
xlabel('Subcarrier Index')
ylabel('Magnitude')
grid on;
subplot(2,1,2)
stem(0:N-1, abs(received_ici),'r','filled')
title('Recovered Symbols With Frequency Offset (ICI Present)')
xlabel('Subcarrier Index')
ylabel('Magnitude')
grid on;
 

 

People are good at skipping over material they already know!

View Related Topics to







Contact Us

Name

Email *

Message *

Popular Posts

Constellation Diagrams of ASK, PSK, and FSK with MATLAB Code + Simulator

📘 Overview of Energy per Bit (Eb / N0) 🧮 Online Simulator for constellation diagrams of ASK, FSK, and PSK 🧮 Theory behind Constellation Diagrams of ASK, FSK, and PSK 🧮 MATLAB Codes for Constellation Diagrams of ASK, FSK, and PSK 📚 Further Reading 📂 Other Topics on Constellation Diagrams of ASK, PSK, and FSK ... 🧮 Simulator for constellation diagrams of m-ary PSK 🧮 Simulator for constellation diagrams of m-ary QAM BASK (Binary ASK) Modulation: Transmits one of two signals: 0 or -√Eb, where Eb​ is the energy per bit. These signals represent binary 0 and 1.    BFSK (Binary FSK) Modulation: Transmits one of two signals: +√Eb​ ( On the y-axis, the phase shift of 90 degrees with respect to the x-axis, which is also termed phase offset ) or √Eb (on x-axis), where Eb​ is the energy per bit. These signals represent binary 0 and 1.  BPSK (Binary PSK) Modulation: Transmits one of two signals...

Fading : Slow & Fast and Large & Small Scale Fading (with MATLAB Code + Simulator)

📘 Overview 📘 LARGE SCALE FADING 📘 SMALL SCALE FADING 📘 SLOW FADING 📘 FAST FADING 🧮 MATLAB Codes 📚 Further Reading LARGE SCALE FADING The term 'Large scale fading' is used to describe variations in received signal power over a long distance, usually just considering shadowing.  Assume that a transmitter (say, a cell tower) and a receiver  (say, your smartphone) are in constant communication. Take into account the fact that you are in a moving vehicle. An obstacle, such as a tall building, comes between your cell tower and your vehicle's line of sight (LOS) path. Then you'll notice a decline in the power of your received signal on the spectrogram. Large-scale fading is the term for this type of phenomenon. SMALL SCALE FADING  Small scale fading is a term that describes rapid fluctuations in the received signal power on a small time scale. This includes multipath propagation effects as well as movement-induced Doppler fr...

Online Simulator for ASK, FSK, and PSK

Try our new Digital Signal Processing Simulator!   Start Simulator for binary ASK Modulation Message Bits (e.g. 1,0,1,0) Carrier Frequency (Hz) Sampling Frequency (Hz) Run Simulation Simulator for binary FSK Modulation Input Bits (e.g. 1,0,1,0) Freq for '1' (Hz) Freq for '0' (Hz) Sampling Rate (Hz) Visualize FSK Signal Simulator for BPSK Modulation ...

Theoretical BER vs SNR for binary ASK, FSK, and PSK with MATLAB Code + Simulator

📘 Overview & Theory 🧮 MATLAB Codes 📚 Further Reading Theoretical BER vs SNR for Amplitude Shift Keying (ASK) The theoretical Bit Error Rate (BER) for binary ASK depends on how binary bits are mapped to signal amplitudes. For typical cases: If bits are mapped to 1 and -1, the BER is: BER = Q(√(2 × SNR)) If bits are mapped to 0 and 1, the BER becomes: BER = Q(√(SNR / 2)) Where: Q(x) is the Q-function: Q(x) = 0.5 × erfc(x / √2) SNR : Signal-to-Noise Ratio N₀ : Noise Power Spectral Density Understanding the Q-Function and BER for ASK Bit '0' transmits noise only Bit '1' transmits signal (1 + noise) Receiver decision threshold is 0.5 BER is given by: P b = Q(0.5 / σ) , where σ = √(N₀ / 2) Using SNR = (0.5)² / N₀, we get: BER = Q(√(SNR / 2)) Theoretical BER vs ...

What is - 3dB Frequency Response? Applications ...

📘 Overview & Theory 📘 Application of -3dB Frequency Response 🧮 MATLAB Codes 🧮 Online Digital Filter Simulator 📚 Further Reading Filters What is -3dB Frequency Response?   Remember, for most passband filters, the magnitude response typically remains close to the peak value within the passband, varying by no more than 3 dB. This is a standard characteristic in filter design. The term '-3dB frequency response' indicates that power has decreased to 50% of its maximum or that signal voltage has reduced to 0.707 of its peak value. Specifically, The -3dB comes from either 10 Log (0.5) {in the case of power} or 20 Log (0.707) {in the case of amplitude} . Viewing the signal in the frequency domain is helpful. In electronic amplifiers, the -3 dB limit is commonly used to define the passband. It shows whether the signal remains approximately flat across the passband. For example, in pulse shapi...

Pulse Shaping using Raised Cosine Filter (with MATLAB + Simulator)

  MATLAB Code for Raised Cosine Filter Pulse Shaping clc; clear; close all ; %% ===================================================== %% PARAMETERS %% ===================================================== N = 64; % Number of OFDM subcarriers cpLen = 16; % Cyclic prefix length modOrder = 4; % QPSK oversample = 8; % Oversampling factor span = 10; % RRC filter span in symbols rolloff = 0.25; % RRC roll-off factor %% ===================================================== %% Generate Baseband OFDM Symbols %% ===================================================== data = randi([0 modOrder-1], N, 1); % Random bits txSymbols = pskmod(data, modOrder, pi/4); % QPSK modulation % IFFT to get OFDM symbol tx_ofdm = ifft(txSymbols, N); % Add cyclic prefix tx_cp = [tx_ofdm(end-cpLen+1:end); tx_ofdm]; %% ===================================================== %% Oversample the Baseband Signal %% ===============================================...

Theoretical BER vs SNR for BPSK

Theoretical Bit Error Rate (BER) vs Signal-to-Noise Ratio (SNR) for BPSK in AWGN Channel Let’s simplify the explanation for the theoretical Bit Error Rate (BER) versus Signal-to-Noise Ratio (SNR) for Binary Phase Shift Keying (BPSK) in an Additive White Gaussian Noise (AWGN) channel. Key Points Fig. 1: Constellation Diagrams of BASK, BFSK, and BPSK [↗] BPSK Modulation Transmits one of two signals: +√Eb or −√Eb , where Eb is the energy per bit. These signals represent binary 0 and 1 . AWGN Channel The channel adds Gaussian noise with zero mean and variance N₀/2 (where N₀ is the noise power spectral density). Receiver Decision The receiver decides if the received signal is closer to +√Eb (for bit 0) or −√Eb (for bit 1) . Bit Error Rat...

BER vs SNR for M-ary QAM, M-ary PSK, QPSK, BPSK, ...(MATLAB Code + Simulator)

📘 Overview of BER and SNR 🧮 Online Simulator for BER calculation of m-ary QAM and m-ary PSK 🧮 MATLAB Code for BER calculation of M-ary QAM, M-ary PSK, QPSK, BPSK, ... 📚 Further Reading 📂 View Other Topics on M-ary QAM, M-ary PSK, QPSK ... 🧮 Online Simulator for Constellation Diagram of m-ary QAM 🧮 Online Simulator for Constellation Diagram of m-ary PSK 🧮 MATLAB Code for BER calculation of ASK, FSK, and PSK 🧮 MATLAB Code for BER calculation of Alamouti Scheme 🧮 Different approaches to calculate BER vs SNR What is Bit Error Rate (BER)? The abbreviation BER stands for Bit Error Rate, which indicates how many corrupted bits are received (after the demodulation process) compared to the total number of bits sent in a communication process. BER = (number of bits received in error) / (total number of tran...