Skip to main content

Antenna Gain-Combining Methods - EGC, MRC, SC, and RMSGC



 There are different antenna gain-combining methods. They are as follows.


1. Equal gain combining (EGC)

2. Maximum ratio combining (MRC)

3. Selective combining (SC)

4. Root mean square gain combining (RMSGC)

5. Zero-Forcing (ZF) Combining 


1. Equal gain combining method

Equal Gain Combining (EGC) is a diversity combining technique in which the receiver aligns the phase of the received signals from multiple antennas (or channels) but gives them equal amplitude weight before summing.

This means each received signal is phase-corrected to be coherent with others, but no scaling is applied based on signal strength or channel quality (unlike MRC).

Mathematically, for received signals y1, y2, ..., yN with complex channel gains h1, h2, ..., hN, the EGC output is:

yegc = ∑i=1N (hi* / |hi|) · yi

Here:

  • hi is the complex channel gain
  • hi* / |hi| is a unit-magnitude phasor that corrects the phase of each path
  • All corrected signals are added with equal magnitude

2. Maximum ratio combining method

Maximum Ratio Combining (MRC) multiplies each received signal by the complex conjugate of its corresponding channel coefficient. This corrects the phase distortion introduced by the channel and gives more weight to signals with higher power (|h|2).

For example, if y1 and y2 are received signals, and h1, h2 are the complex channel gains, then:

ymrc = h1* · y1 + h2* · y2

MATLAB Code for Maximum Ratio Combining (MRC)


3. Selective combining method

In the selective combing method, we select a few data streamwise with higher SNR values than others. Then we combine them.


4. Root mean square gain combining method. 


We first take the square of individual data stream in the root mean square combining method. Then we sum them. And finally, we take the square root values of the composite data streams. This method shows the near-optimal performance as the maximum ratio combining, as some researcher claims.

5. Zero Forcing Combining

Zero Forcing is a linear combining technique used in MIMO systems to nullify inter-stream interference by inverting the channel. It works under the assumption of perfect channel knowledge (CSI).

The idea:

Given: y = Hx + n
Want to recover: x
Multiply both sides by W = (HHH)-1 HH (or pinv(H) in MATLAB)
Result: x = Wy ≈ x + Wn

It forces WH ≈ I, effectively "undoing" the channel.

 

MATLAB Code for Zero Forcing Combining

%The code is written by SalimWireless.com

clc; clear; close all;

%% Parameters
Nt = 4; % Transmit antennas
Nr = 4; % Receive antennas
numBits = 1e4; % Number of bits per stream
SNRdB = 0; % SNR in dB
numRuns = 100; % Number of independent runs for averaging

%% Precompute noise standard deviation
noiseSigma = 10^(-SNRdB / 20);

%% Accumulator for total errors
totalErrors = 0;

for run = 1:numRuns
% Generate random bits for each run
bits = randi([0 1], Nt, numBits); % Size: [4 x 10000]
txSymbols = 1 - 2 * bits; % BPSK: 0→+1, 1→-1

% Generate random Rayleigh fading channel (4x4)
H = (randn(Nr, Nt) + 1j * randn(Nr, Nt)) / sqrt(2);

% Generate AWGN noise
noise = noiseSigma * (randn(Nr, numBits) + 1j * randn(Nr, numBits)) / sqrt(2);

% Received signal
y = H * txSymbols + noise;

% Zero Forcing equalizer
W_zf = pinv(H);
rxSymbols = W_zf * y;

% BPSK demodulation
rxBits = real(rxSymbols) < 0;

% Count errors
totalErrors = totalErrors + sum(rxBits(:) ~= bits(:));
end

%% Final BER
BER = totalErrors / (Nt * numBits * numRuns);
fprintf('Average BER over %d runs for 4x4 MIMO ZF at %d dB SNR: %.5f\n', numRuns, SNRdB, BER);
web('https://www.salimwireless.com/search?q=antenna%20combining%20methods', '-browser');

Further Reading 

People are good at skipping over material they already know!

View Related Topics to







Admin & Author: Salim

s

  Website: www.salimwireless.com
  Interests: Signal Processing, Telecommunication, 5G Technology, Present & Future Wireless Technologies, Digital Signal Processing, Computer Networks, Millimeter Wave Band Channel, Web Development
  Seeking an opportunity in the Teaching or Electronics & Telecommunication domains.
  Possess M.Tech in Electronic Communication Systems.


Contact Us

Name

Email *

Message *

Popular Posts

Hybrid Beamforming | Page 2

Beamforming Techniques Hybrid Beamforming... Page 1 | Page 2 | clear all; close all; clc; Nt = 64; Nr = 16; NtRF = 4; NrRF = 4; At both the transmitter and receiver ends, there are four RF chains only for a hybrid beamforming system. Alternatively, every 16 antenna elements on the transmitter side is connected to a single RF chain, while every 4 antenna elements on the receiver side are connected to a single RF chain. Mixers, amplifiers, and other critical wireless communication components make up the RF chain. Now, in the case of hybrid beamforming, there can be four different data streams between the transmitter and receiver, as both sides have four RF chains, each of which is accountable for a separate data stream. For Analog Beamforming: All 64 Tx antenna elements create a beam or focus the resultant correlated signal spread from adjacent antennas to a particular direction. Similarly, it may be used for beam...

BER vs SNR for M-ary QAM, M-ary PSK, QPSK, BPSK, ...

📘 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. It is defined as,  In mathematics, BER = (number of bits received in error / total number of transmitted bits)  On the other hand, SNR ...

MATLAB Code for Channel Impulse Response

MATLAB Code for Channel Impulse Response (CIR) 📘 Overview & Theory 🧮 MATLAB Code 🤔 How does CIR affect the signal? 🛠️ How to Mitigate Channel Distortion? 📚 Further Reading MATLAB Script for Simulating CIR This MATLAB script allows you to generate and visualize the channel impulse response (CIR). You can choose to create a 'random' multi-path channel or a near-'ideal' single-path channel to understand their distinct characteristics. % User input for choosing the type of impulse response response_type = input('Enter "random" for random channel impulse response or "ideal" for near-ideal impulse response: ', 's'); if strcmpi(response_type, 'random') % Parameters for random impulse response num_taps = input('Enter the number of taps: '); % Number of taps in the channel d...

Comparisons among ASK, PSK, and FSK | And the definitions of each

📘 Comparisons among ASK, FSK, and PSK 🧮 Online Simulator for calculating Bandwidth of ASK, FSK, and PSK 🧮 MATLAB Code for BER vs. SNR Analysis of ASK, FSK, and PSK 📚 Further Reading 📂 View Other Topics on Comparisons among ASK, PSK, and FSK ... 🧮 Comparisons of Noise Sensitivity, Bandwidth, Complexity, etc. 🧮 MATLAB Code for Constellation Diagrams of ASK, FSK, and PSK 🧮 Online Simulator for ASK, FSK, and PSK Generation 🧮 Online Simulator for ASK, FSK, and PSK Constellation 🧮 Some Questions and Answers Modulation ASK, FSK & PSK Constellation MATLAB Simulink MATLAB Code Comparisons among ASK, PSK, and FSK    Comparisons among ASK, PSK, and FSK   Simulator for Calculating Bandwidth of ASK, FSK, and PSK The baud rate represents the number of symbols transmitted per second. Both baud rate and bit rate a...

MATLAB code for BER vs SNR for M-QAM, M-PSK, QPSk, BPSK, ...

🧮 MATLAB Code for BPSK, M-ary PSK, and M-ary QAM Together 🧮 MATLAB Code for M-ary QAM 🧮 MATLAB Code for M-ary PSK 📚 Further Reading MATLAB Script for BER vs. SNR for M-QAM, M-PSK, QPSK, BPSK % Written by Salim Wireless clc; clear; close all; num_symbols = 1e5; snr_db = -20:2:20; psk_orders = [2, 4, 8, 16, 32]; qam_orders = [4, 16, 64, 256]; ber_psk_results = zeros(length(psk_orders), length(snr_db)); ber_qam_results = zeros(length(qam_orders), length(snr_db)); for i = 1:length(psk_orders) psk_order = psk_orders(i); for j = 1:length(snr_db) data_symbols = randi([0, psk_order-1], 1, num_symbols); modulated_signal = pskmod(data_symbols, psk_order, pi/psk_order); received_signal = awgn(modulated_signal, snr_db(j), 'measured'); demodulated_symbols = pskdemod(received_signal, psk_order, pi/psk_order); ber_psk_results(i, j) = sum(data_symbols ~= demodulated_symbols) / num_symbols; end end for ...

Ultra-Wideband | Positioning, Frequency Range, Power and AoA & AoD detection

Frequency Bands Ultra-Wideband... UWB functions with the signal's so-called Time of Flight rather than RSSI (Received Signal Strength Indication), which makes technology more precise and enables it to conduct extremely precise ranging measurements. This is in contrast to traditional radio technologies (like Bluetooth or Wi-Fi). Key Features of UWB Bands UWB in order to bring decimeter-level positioning to the market There is almost no interference with other radio communication systems Multipath signal propagation resistance  resistance to noise  Low-power transceiver required Ultra Wide Band or UWB comes under the  Super High Frequency Band (SHF) range, as SHF ranges from 3 to 30 GHz. UWB frequency range: 3.1 GHz to 10.6 GHz Ultra-wideband or UWB technology is used for high-speed short-range wireless communication protocol. Now, it is a globally accepted protocol used in Mobile Telephony, AirTags, Medical fields, and NFC (near-field co...

Theoretical vs. simulated BER vs. SNR for ASK, FSK, and PSK

📘 Overview 🧮 Simulator for calculating BER 🧮 MATLAB Codes for calculating theoretical BER 🧮 MATLAB Codes for calculating simulated BER 📚 Further Reading BER vs. SNR denotes how many bits in error are received for a given signal-to-noise ratio, typically measured in dB. Common noise types in wireless systems: 1. Additive White Gaussian Noise (AWGN) 2. Rayleigh Fading AWGN adds random noise; Rayleigh fading attenuates the signal variably. A good SNR helps reduce these effects. Simulator for calculating BER vs SNR for binary ASK, FSK, and PSK Calculate BER for Binary ASK Modulation Enter SNR (dB): Calculate BER Calculate BER for Binary FSK Modulation Enter SNR (dB): Calculate BER Calculate BER for Binary PSK Modulation Enter SNR (dB): Calculate BER BER vs. SNR Curves MATLAB Code for Theoretical BER % The code is written by SalimWireless.Com clc; clear; close all; % SNR v...