Skip to main content

Quantization Signal to Noise Ratio (Q-SNR)



Quantization Explanation

For a signal varies from -8 V to +8 V, giving a total quantization range of 16 V. If the number of quantization levels is 4, the step size will be:

\[ v_{\min} = -8, \quad v_{\max} = 8, \quad L = 4 \]

Quantization step size:

\[ \Delta = \frac{v_{\max} - v_{\min}}{L} = \frac{8 - (-8)}{4} = \frac{16}{4} = 4 \]

Partition boundaries (decision levels):

\[ p_0 = -8, \quad p_1 = -8 + 4 = -4, \quad p_2 = 0, \quad p_3 = 4, \quad p_4 = 8 \]

Quantization codebook (reconstruction levels):

\[ c_i = v_{\min} + \left(i + \frac{1}{2}\right) \Delta, \quad i = 0, 1, 2, 3 \]

Calculate each codeword:

  • \[ c_0 = -8 + \left(0 + \frac{1}{2}\right) \times 4 = -8 + 2 = -6 \]
  • \[ c_1 = -8 + \left(1 + \frac{1}{2}\right) \times 4 = -8 + 6 = -2 \]
  • \[ c_2 = -8 + \left(2 + \frac{1}{2}\right) \times 4 = -8 + 10 = 2 \]
  • \[ c_3 = -8 + \left(3 + \frac{1}{2}\right) \times 4 = -8 + 14 = 6 \]

Quantization rule:

For an input \( x \), find \( i \) such that:

\[ p_i < x \leq p_{i+1} \]

then output quantized value:

\[ Q(x) = c_i \]

Summary:

Interval Output quantized value \( c_i \)
\(-8 < x \leq -4\) \(-6\)
\(-4 < x \leq 0\) \(-2\)
\(0 < x \leq 4\) \(2\)
\(4 < x \leq 8\) \(6\)

Explore the concept of Quantization Signal-to-Noise Ratio (SNR), a critical parameter in Pulse Code Modulation (PCM) that determines the fidelity of quantized signals in digital communication systems.

Core Concepts of Quantization SNR

  1. Definition of Quantization SNR

    Quantization SNR measures the ratio of the power of the quantized signal to the power of the quantization noise introduced during the quantization process.

    Psnr = Ps / Pq, Or, Psnr = Ps / (Δ² / 12) 

    Where Psnr is the quantization SNR, Ps is the average power of the signal, Pq is the quantization noise power, and Δ is the quantization step size.

  2. Importance in PCM

    In PCM (Pulse Code Modulation) systems, high quantization SNR ensures better signal reconstruction at the receiver, leading to improved quality and performance. Read more about PCM (click here)

  3. Factors Affecting Quantization SNR
    • Step Size: Smaller step sizes lead to higher quantization SNR.
    • Signal Power: Higher average signal power results in better SNR.

Example of Quantization SNR Calculation

Consider a sine signal with an amplitude of 1. So, average power of the sine signal Ps = (1)^2 = 0.5  and a quantization step size of Δ = 0.25

The quantization noise power

Pq = Î”²/12 = (0.25² / 12) = 0.00520833 

 The quantization SNR can be calculated as follows:

Psnr = Ps / Pq  = 0.5 / 0.00520833 =  96 (Approx.) = 19.82 dB

This indicates that the quantization noise is significantly lower than the signal power, resulting in good signal quality.


Simulation of a typical PCM system using quantization for a signal varying from -8 V to 8 V










In the table above, the signal varies from -8 V to +8 V, giving a total quantization range of 16 V. If the number of quantization levels is 4, the step size will be:

Δ = 16 V / 4 = 4 V

The resulting signal-to-quantization-noise ratio (SQNR) is calculated as:

SQNRlinear = 4 / (((16 / inputSignalAmplitude)2) / 12) = 48

SQNRdB = 10 · log10(48) ≈ 16.80 dB

and so on.


Quantization Levels and Their Impact

The number of quantization levels directly influences the quantization SNR:

  • Increasing quantization levels improves the approximation of the original signal, enhancing SNR.
  • However, higher levels also require more bits for representation, leading to potential trade-offs in bandwidth.

The 6.02n + 1.76 Rule (SQNR)

A fundamental rule in Digital Signal Processing is that each additional bit used in quantization reduces the noise floor by approximately 6 dB.

\[ SQNR_{dB} \approx 6.02 \times n + 1.76 \text{ dB} \]

Where \( n \) is the number of bits (resolution).

  • 8-bit Quantization: ~49.9 dB (Common for legacy telephony)
  • 16-bit Quantization: ~98.1 dB (CD Quality Audio)
  • 24-bit Quantization: ~146.2 dB (Professional Studio Grade)

Mid-Rise vs. Mid-Tread Quantizers

There are two main types of uniform quantizers based on how they handle the origin (zero):

Feature Mid-Rise Mid-Tread
Zero Level No (Origin is a rise) Yes (Origin is a tread)
Number of Levels Even (\(2^n\)) Odd (\(2^n - 1\))
Best Use General DSP Noise reduction in quiet signals

Why Quantization Matters in Industry

1. Audio Engineering

Quantization bit-depth determines the dynamic range of a recording. Lower bit depths cause "quantization distortion," which sounds like a grainy hiss.

2. Medical Imaging (MRI/CT)

High-resolution ADCs (12-bit to 16-bit) are required to capture tiny variations in sensor data to ensure accurate diagnostic images.

3. Telecommunications

Techniques like Non-uniform Quantization (A-Law and μ-Law) are used to compress human voice for mobile networks while maintaining clarity.

4. Image Compression

JPEG compression uses quantization matrices to remove visual data that the human eye cannot see, reducing file size significantly.


Try Interactive Online Simulators


Conclusion

Understanding Quantization SNR is essential for designing efficient digital communication systems. By optimizing quantization levels and step sizes, engineers can significantly enhance signal quality.


Further Reading

[1] Understanding Quantization in PCM

[2] ADC (Analog to Digital) SNR Gain 

[3] Sampling Theorem (Nyquist-Shannon) Theorem

Contact Us

Name

Email *

Message *

Popular Posts

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

UGC NET Electronic Science Previous Year Question Papers with Solutions

Home / Engineering & Other Exams / UGC NET 2026 PYQ ⬇️ Download Papers and Solutions 📋 Exam Pattern 💡 Preparation Tips ❓ FAQs 📊 Exam Highlights: Electronic Science (88) Feature Details Junior Research Fellowship (JRF) ₹37,000 + HRA per month Eligibility M.Sc/M.Tech in Electronics (55%) Validity of Certificate JRF (3 Years) | Lectureship (Lifetime) 📥 Download UGC NET Electronics PDFs Complete collection of previous year question papers, answer keys and explanations for Subject Code 88. Start Downloading 📂 View All Question Papers June 2025 - Question Paper Download PDF June 2025 - Solved Paper + Explanation ...

Online Simulator for ASK, FSK, and PSK

Interactive Digital Signal Processing (DSP) Tutorial and Simulator for ASK, FSK, and BPSK modulation techniques. Try our new Digital Signal Processing Simulator!   •   Interactive ASK, FSK, and BPSK tools updated for 2025. Start Now Digital Modulation Visualizer: ASK, FSK, & BPSK Simulator Learn and visualize binary modulation techniques (ASK, FSK, BPSK) in real-time with adjustable carrier and sampling parameters. Perfect for DSP students and engineers. 📡 ASK Simulator 📶 FSK Simulator 🎚️ BPSK Simulator 📚 More Topics ASK Modulator FSK Modulator BPSK Modulator More Topics 1. ASK (Amplitude Shift Keying) Simulat...

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 Q-function 📚 Resources 📂 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 of two signals: +√Eb​ (On the y-axis, the phas...

UGC NET Electronic Science June 2025 Question Paper with Answer Key & Detailed Solutions

Home / UGC NET PYQ / June 2025 Solved UGC NET Electronic Science June 2025 Question Paper with Answer Key and Full Explanations 📥 Download Question Paper (PDF) 2025 2024 2023 2022 2021 2020 Explanations 1. For forming a p-type semiconductor, the dopant must be a trivalent impurity (three valence electrons) so that it creates acceptor levels and holes become the majority carriers. Among the given elements, boron (B) is a group-III element (trivalent). Arsenic (As) and phosphorus (P) are group-V (pentavalent) donors that produce n-type material, and germanium (Ge) is a group-IV element usually used as the semiconductor, not as an acceptor dopant. Hence, doping an intrinsic semiconductor with B produces a p-type semiconductor. 2. The ohmic resistance of a JFET at zero gate bias is given by the standard relation: R DS(on) = V P / I DSS because in the ohmic (linear) region with V GS...

BER performance of QPSK with BPSK, 4-QAM, 16-QAM, 64-QAM, 256-QAM, etc (MATLAB + Simulator)

📘 Overview 📚 QPSK vs BPSK and QAM: A Comparison of Modulation Schemes in Wireless Communication 📚 Real-World Example 🧮 MATLAB Code 📚 Further Reading   QPSK provides twice the data rate compared to BPSK. However, the bit error rate (BER) is approximately the same as BPSK at low SNR values when gray coding is used. On the other hand, QPSK exhibits similar spectral efficiency to 4-QAM and 16-QAM under low SNR conditions. In very noisy channels, QPSK can sometimes achieve better spectral efficiency than 4-QAM or 16-QAM. In practical wireless communication scenarios, QPSK is commonly used along with QAM techniques, especially where adaptive modulation is applied. Modulation Bits/Symbol Points in Constellation Usage Notes BPSK 1 2 Very robust, used in weak signals QPSK 2 4 Balanced speed & reliability 4-QAM ...

1G to 5G Technology - Evolution of Wireless Generations

Cellular wireless evolution Generation Frequency band PHY features Data rate Spectral Eff. (bps/Hz) 1G 850 MHz FDMA, FM N/A N/A 2G 900 MHz, 1.8 GHz TDMA/CDMA, GMSK/QPSK, FEC, PC 10 Kbps < 1 3G 1.8–2.5 GHz CDMA, QAM 1–40 Mbps 1–8 4G 2–8 GHz OFDMA, SC-FDMA, QAM, MIMO-OFDM 100–600 Mbps 15 5G 1–6 GHz mm wave (26–28 GHz) < 1 GHz (massive IoT) visible light? massive MIMO, beamforming D2D, Full duplex, NOMA LDPC and Polar codes OFDM & variants (adapted to extremes?) multi-Gbps several tens Waveform design is the major change between the generations Mobile Wireless Generations Specifications  1G  Voice, Analog traffic, FDMA  2G  Voice, SMS, CS data ...

MATLAB Code for ASK, FSK, and PSK (with Online Simulator)

MATLAB Code for ASK, FSK, and PSK Comprehensive implementation of digital modulation and demodulation techniques with simulation results. 📘 Theory 📡 ASK Code 📶 FSK Code 🎚️ PSK Code 🕹️ Simulator 📚 Further Reading Amplitude Shift Frequency Shift Phase Shift Live Simulator ASK, FSK & PSK HomePage MATLAB Code MATLAB Code for ASK Modulation and Demodulation COPY % The code is written by SalimWireless.Com clc; clear all; close all; % Parameters Tb = 1; fc = 10; N_bits = 10; Fs = 100 * fc; Ts = 1/Fs; samples_per_bit = Fs * Tb; rng(10); binar...