Skip to main content

Rayleigh vs Rician Fading (with MATLAB + Simulator)

 

In Rayleigh fading, the channel coefficients tend to have a Rayleigh distribution, which is characterized by a random phase and magnitude with an exponential distribution. This means the magnitude of the channel coefficient follows an exponential distribution with a mean of 1.

In Rician fading, there is a dominant line-of-sight component in addition to the scattered components. The channel coefficients in Rician fading can indeed tend towards 1, especially when the line-of-sight component is strong. When the line-of-sight component dominates, the Rician fading channel behaves more deterministically, and the channel coefficients may tend towards the value of the line-of-sight component, which could be close to 1.

 

MATLAB Script

clc;
clear all;
close all;

% Define parameters
numSamples = 1000; % Number of samples
K_factor = 5; % K-factor for Rician fading
SNR_dB = 20; % Signal-to-noise ratio (in dB)

% Generate complex Gaussian random variable for Rayleigh fading channel
h_rayleigh = (randn(1, numSamples) + 1i * randn(1, numSamples)) / sqrt(2);

% Generate complex Gaussian random variable for line-of-sight component
h_los = sqrt(K_factor / (K_factor + 1));

% Generate noise
noisePower = 10^(-SNR_dB/10);
noise = sqrt(noisePower/2) * (randn(1, numSamples) + 1i * randn(1, numSamples));

% Combine Rayleigh and line-of-sight components for Rician fading channel
h_rician = h_los + sqrt(1 / (K_factor + 1)) * h_rayleigh;

% Add noise to the channel coefficients for Rayleigh fading channel
h_rayleigh_with_noise = h_rayleigh + noise;

% Add noise to the channel coefficients for Rician fading channel
h_rician_with_noise = h_rician + noise;

% Plot the channel coefficients
figure;
subplot(2,1,1);
plot(real(h_rayleigh_with_noise), imag(h_rayleigh_with_noise), 'b.');
hold on;
plot(real(h_rician_with_noise), imag(h_rician_with_noise), 'r.');
title('Channel Coefficients with Noise');
xlabel('Real');
ylabel('Imaginary');
axis equal;
legend('Rayleigh', 'Rician');
grid on;

subplot(2,1,2);
histogram(abs(h_rayleigh_with_noise), 'Normalization', 'probability', 'EdgeColor', 'b');
hold on;
histogram(abs(h_rician_with_noise), 'Normalization', 'probability', 'EdgeColor', 'r');
title('Magnitude Histogram');
xlabel('Magnitude');
ylabel('Probability');
legend('Rayleigh', 'Rician');
grid on;

 

Output

 

 
Fig 1: Rayleigh v/s Rician Fading


Copy the MATLAB Code from here



Interactive Online Simulators for Rayleigh & Rician Fading

Fading Models Overview (Rayleigh, Rician, and Nakagami)

In wireless simulations, fading models statistically describe how signal strength fluctuates due to multipath interference.

Rayleigh Fading

Scenario: Non-Line-of-Sight (NLOS)

Used for urban environments where the signal is blocked by buildings and reaches the receiver only via scattering.

\[ f_R(r) = \frac{r}{\sigma^2} e^{-\frac{r^2}{2\sigma^2}} \]

Rician Fading

Scenario: Line-of-Sight (LOS)

Used when a dominant direct path exists. Characterized by the K-factor (ratio of LOS power to scattered power).

\[ K = \frac{\text{LOS power}}{\text{Scattered power}} \]

Key Comparison

  • Severity: Rayleigh is more severe; Rician becomes "cleaner" as the K-factor increases.
  • Nakagami-m: A flexible model where \(m=1\) equals Rayleigh and higher \(m\) approximates Rician.
  • Limits: As \(K \to 0\), Rician fading becomes Rayleigh fading.

Wireless Fading Essentials

1 Large-Scale Fading

Occurs over long distances due to shadowing by obstacles like buildings. It describes the general decline in signal power as you move away from a transmitter.

2 Small-Scale Fading

Rapid power fluctuations over very short distances (wavelength level). This includes Rayleigh (NLOS) and Rician (LOS) models caused by multipath propagation.

3 Slow vs. Fast Fading

Determined by the Doppler Shift. Fast fading occurs when the channel changes quicker than the symbol rate; Slow fading occurs when the channel remains stable over several symbol periods.

Simulation Focus

Analyzing Alamouti 2x1 MIMO performance in multipath environments.

Want to see the MATLAB code or a deep dive into Doppler Shift equations?

Read More & Detailed Technical Guide →

Contact Us

Name

Email *

Message *

Popular Posts

UGC-NET Electronic Science Question Paper With Answer Key and Full Explanation [Dec 2023]

    UGC-NET Electronic Science Question Paper With Answer Key Download Pdf [Dec 2023] Download Question Paper               See Answers   2025 | 2024 | 2023 | 2022 | 2021 | 2020 UGC-NET Electronic Science  2023 Answers with Explanations 51. (A): The stacking fault is the most common area defect found in silicon. These faults typically occur along the 111 plane. In the crystalline structure of silicon, atoms are arranged in a specific pattern known as a diamond lattice. A stacking fault refers to a disruption in the normal order of atomic layers within this lattice, which usually occurs in the 111 plane due to the geometric arrangement of the atoms. This type of defect can affect the electrical and mechanical properties of the material, such as the mobility of charge carriers and mechanical strength. 52. (C): The important figure of merit for the microwave application of a Schot...

UGC NET Electronic Science Previous Year Question Papers

Home / Engineering & Other Exams / UGC NET 2022 PYQ 📥 Download UGC NET Electronics PDFs Complete collection of previous year question papers, answer keys and explanations for Subject Code 88. Start Downloading UGC-NET (Electronics Science, Subject code: 88) Subject_Code : 88; Department : Electronic Science; 📂 View All Question Papers Q. UGC Net Electronic Science Question Paper [June 2025] A. UGC Net Electronic Science Question Paper With Answer Key Download Pdf [June 2025] with full explanation Q. UGC Net Electronic Science Question Paper [December 2024] A. UGC Net Electronic Science Question Paper With Answer Key Download Pdf [December 2024] Q. UGC Net Electronic Science Question Paper [Aug 2024] A. UGC Net Electronic Scien...

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

Bit Error Rate (BER) & SNR Guide Analyze communication system performance with our interactive simulators and MATLAB tools. 📘 Theory 🧮 Simulators 💻 MATLAB Code 📚 Resources BER Definition SNR Formula BER Calculator MATLAB Comparison 📂 Explore M-ary QAM, PSK, and QPSK Topics ▼ 🧮 Constellation Simulator: M-ary QAM 🧮 Constellation Simulator: M-ary PSK 🧮 BER calculation for ASK, FSK, and PSK 🧮 Approaches to BER vs SNR What is Bit Error Rate (BER)? The BER indicates how many corrupted bits are received compared to the total number of bits sent. It is the primary figure of merit for a...

Theoretical vs. simulated BER vs. SNR for ASK, FSK, and PSK (MATLAB Code + Simulator)

📘 Overview 🧮 Simulator 💻 Theoretical Code 📊 Simulated Code 📚 Resources Overview 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. Bit Error Rate (BER) Equations BER formulas for ASK, FSK, and PSK modulation schemes. ASK BER = 0.5 × erfc(0.5 × √SNR) FSK BER = 0.5 × erfc(√(SNR / 2)) PSK BER = 0.5 × erfc(√SNR) erfc / Q-function (Click here) Live BER S...

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

Constellation Diagrams: ASK, FSK, and PSK Comprehensive guide to signal space representation, including interactive simulators and MATLAB implementations. 📘 Overview 🧮 Simulator ⚖️ Theory 📚 Resources Definitions Constellation Tool Key Points MATLAB Code 📂 Other Topics: M-ary PSK & QAM Diagrams ▼ 🧮 Simulator for M-ary PSK Constellation 🧮 Simulator for M-ary QAM Constellation 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...

Fourier Transform of Unit Step Function Using MATLAB

  MATLAB Script  clc; clear; close all; % Time domain setup Fs = 1000;               % Sampling frequency T = 1/Fs;                % Sampling interval L = 2048;                % Number of samples t = (-L/2 : L/2 -1)*T;   % Symmetric time vector % Unit step function u(t) ≈ heaviside(t) x = double(t >= 0);      % Discrete unit step % FFT and frequency axis X = fftshift(fft(x));    % Shift zero freq to center f = (-Fs/2):(Fs/L):(Fs/2 - Fs/L);   % Frequency vector % Normalize FFT output X = X / L; % Plot time-domain signal figure(); plot(t, x, 'LineWidth', 1.5); title('Unit Step Function u(t)'); xlabel('Time (s)'); ylabel('Amplitude'); grid on; xlim([-0.01 0.01]); % Plot frequency-domain magnitude figure(); plot(f, abs(X), 'LineWidth', 1.5); title('Fourier Transform of a Rectangular Function'); xlabel('Frequency (Hz...

OFDM vs SC-OFDM

  The main difference between OFDM and SC-OFDM is that SC-OFDM transmits the signal using a single carrier, while OFDM uses multiple subcarriers. However, in SC-OFDM, the signal is generated with different sub-bands, but it is transmitted through a single carrier (more technically, through a wideband carrier signal). Block Diagram of OFDM: Data → Modulation → Serial-to-Parallel → IFFT → Add CP → Transmit Received Signal → Remove CP → FFT → Parallel-to-Serial → Demodulation → Data Block Diagram of SC-OFDM: Data → Modulation → DFT → IFFT → Add CP → Transmit Received Signal → Remove CP → FFT → Demodulation → Data    In the case of OFDM, the input modulated data is converted from a serial stream to parallel streams, and different subcarriers are assigned to each chunk. Then, IFFT is applied to these chunks, and a cyclic prefix is added to each one. Each chunk is technically referred to as an OFDM symbol . Unlike OFDM, SC-OFDM does not perform serial-to-parallel conversion ...