Skip to main content

Is Delta Modulation practically used for Typical Wireless Communication?

 

Delta modulation and demodulation [↗] processes are pretty simple. It uses a 1-bit quantizer, or there are 2^(1) = two quantization levels. In this encoding technique, we compare the succeeded sample with the previous sample. If it is greater than the previous sample, we assign 1. Otherwise, we assign 0. Here, we encode the modulated signal like this. However, this modulation scheme is susceptible to noise. So Delta modulation (DM) is not commonly used in typical wireless communication systems for several reasons:

Noise Sensitivity: 

Delta modulation is highly sensitive to noise due to its reliance on small changes (delta) in the input signal. In wireless communication systems, especially in environments with high levels of noise and interference, delta modulation may result in poor performance and low signal fidelity.

Quantization Errors: 

Delta modulation suffers from quantization errors, which occur when the difference between the input signal and the predicted value exceeds the step size (delta). These errors can accumulate over time, leading to distortion and degradation of the decoded signal quality.

Low Bit Efficiency: 

Delta modulation typically uses only one bit per sample to represent the signal, resulting in low bit efficiency compared to more sophisticated modulation schemes. This limitation makes delta modulation less suitable for applications requiring high data rates or efficient spectrum utilization.

Better Alternatives: 

In modern wireless communication systems, there are several alternative modulation schemes that offer better performance, robustness to noise, and higher data rates than delta modulation. Techniques such as amplitude modulation (AM), frequency modulation (FM), phase modulation (PM), and various digital modulation schemes (e.g., QPSK, QAM) are commonly used in wireless standards like Wi-Fi, Bluetooth, LTE, and 5G.

Adaptive Techniques: 

While adaptive delta modulation (ADM) can improve the performance of delta modulation by dynamically adjusting the step size based on the input signal characteristics, it still suffers from limitations related to noise sensitivity and quantization errors.

Overall, while delta modulation has certain advantages such as simplicity and low complexity, it is not commonly used in typical wireless communication systems due to its limitations in terms of noise sensitivity, quantization errors, and low bit efficiency. More advanced modulation schemes are preferred for achieving higher performance, robustness, and efficiency in wireless communication applications. 

MATLAB Code for BER vs SNR for Delta Modulation 

clear all;
close all;
clc;

% Parameters
N = 1000000; % Number of bits
SNR_dB = 0:1:20; % SNR in dB
SNR_lin = 10.^(SNR_dB./10); % Linear SNR
delta = 0.1; % Step size for delta modulation

% Generate random binary data
data = randi([0,1],N,1);

% Delta modulation
for k = 1:length(SNR_dB)
% Encode data using delta modulation
encoded_data = zeros(N,1);
for i = 1:N
if i == 1
encoded_data(i) = data(i); % First bit directly encoded
else
prediction = encoded_data(i-1) + delta*2*(randi([0,1])-0.5); % Predictor
if data(i) == 0 % If bit is 0, follow prediction
encoded_data(i) = prediction;
else % If bit is 1, add delta to the prediction
encoded_data(i) = prediction + delta;
end
end
end

% Add noise
noise_power = 1/SNR_lin(k);
noise = sqrt(noise_power) * randn(size(encoded_data));
received_data = encoded_data + noise;

% Decode received data
decoded_data = zeros(N,1);
for i = 1:N
if i == 1
decoded_data(i) = received_data(i); % First bit directly decoded
else
if received_data(i) >= encoded_data(i-1) % If received value is greater than previous, decode as 1
decoded_data(i) = 1;
else % Otherwise, decode as 0
decoded_data(i) = 0;
end
end
end

% Calculate BER
errors = sum(data ~= decoded_data);
BER(k) = errors/N;
end

% Plot BER vs SNR
figure;
semilogy(SNR_dB,BER,'b-o');
grid on;
xlabel('SNR (dB)');
ylabel('Bit Error Rate (BER)');
title('BER vs SNR in Delta Modulation');

Output


 
Fig: BER vs SNR in Delta Modulation (DM) where step-size = 0.1
 

Copy the MATLAB Code from here


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

Constellation Diagrams of ASK, PSK, and FSK

📘 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...

Constellation Diagrams of M-ary QAM | M-ary Modulation

📘 Overview of QAM 🧮 MATLAB Code for m-ary QAM (4-QAM, 16-QAM, 32-QAM, ...) 🧮 Online Simulator for M-ary QAM Constellations 📚 Further Reading 📂 Other Topics on Constellation Diagrams of QAM configurations ... 🧮 MATLAB Code for 4-QAM 🧮 MATLAB Code for 16-QAM 🧮 MATLAB Code for m-ary QAM (4-QAM, 16-QAM, 32-QAM, ...) 🧮 Simulator for constellation diagrams of m-ary PSK 🧮 Simulator for constellation diagrams of m-ary QAM 🧮 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 QAM Unlike M-ary PSK, where the signal is modulated with diff...

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...

Theoretical BER vs SNR for binary ASK and FSK

📘 Overview & Theory 🧮 MATLAB Codes 📚 Further Reading Theoretical Ber vs SNR for Amplitude Shift Keying (ASK) The theoretical bit error rate (BER) for binary Amplitude Shift Keying (ASK) as a function of the signal-to-noise ratio (SNR) can be derived using the following expression: If we map the binary signals to 1 and -1 in ASK , the probability of bit error will be: BER = Q(√(2*SNR))   If we map the binary signals to 0 and 1 in ASK , the probability of bit error will be:    BER = Q(√(SNR/2))   Where: Q(x) is the Q-function, which is the tail probability of the standard normal distribution. SNR is the signal-to-noise ratio. N0 is the noise power spectral density. Where Q is the Q function In mathematics Q(x) = 0.5 * erfc(x/ √ 2)   Calculate the Probability of Error using Q-function for ASK: For ASK with amplitudes 0 and 1 : When bit '0' is transmitted, the received signal is noise only . When bit '1' is transmitted, the re...

Constellation Diagram of FSK in Detail

📘 Overview 🧮 Simulator for constellation diagram of FSK 🧮 Theory 🧮 MATLAB Code 📚 Further Reading   Binary bits '0' and '1' can be mapped to 'j' and '1' to '1', respectively, for Baseband Binary Frequency Shift Keying (BFSK) . Signals are in phase here. These bits can be mapped into baseband representation for a number of uses, including power spectral density (PSD) calculations. For passband BFSK transmission, we can modulate signal 'j' with a lower carrier frequency and signal '1' with a higher carrier frequency while transmitting over a wireless channel. Let's assume we are transmitting carrier signal fc1 for the transmission of binary bit '1' and carrier signal fc2 for the transmission of binary bit '0'. Simulator for 2-FSK Constellation Diagram Simulator for 2-FSK Constellation Diagram SNR (dB): ...

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...

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 ...

How Windowing Affects Your Periodogram

The windowed periodogram is a widely used technique for estimating the Power Spectral Density (PSD) of a signal. It enhances the classical periodogram by mitigating spectral leakage through the application of a windowing function. This technique is essential in signal processing for accurate frequency-domain analysis.   Power Spectral Density (PSD) The PSD characterizes how the power of a signal is distributed across different frequency components. For a discrete-time signal, the PSD is defined as the Fourier Transform of the signal’s autocorrelation function: S x (f) = FT{R x (Ï„)} Here, R x (Ï„)}is the autocorrelation function. FT : Fourier Transform   Classical Periodogram The periodogram is a non-parametric PSD estimation method based on the Discrete Fourier Transform (DFT): P x (f) = \(\frac{1}{N}\) X(f) 2 Here: X(f): DFT of the signal x(n) N: Signal length However, the classical periodogram suffers from spectral leakage due to abrupt truncation of the ...