AWGN Python: Adding Noise Based on SNR (dB)

awgn
python
signal processing
noise
snr

This article explains how to add Additive White Gaussian Noise (AWGN) to a signal vector in Python, based on a desired Signal-to-Noise Ratio (SNR) in decibels (dB). The following formulas are used to generate random samples of Gaussian noise that are added to the signal vector, matching its length.

There are two primary methods for adding AWGN to a signal:

  1. Based on a desired SNR.
  2. Based on a known noise power.

The following equations are used in the Python script to add the Gaussian noise vector to the signal vector according to the desired SNR in dB.

AWGN formula

AWGN Python Code Based on Desired SNR (dB)

# This python script can be used to add noise as per desired SNR (dB)
import numpy as np
import matplotlib.pyplot as plt

target_snr_db = 15  # Desired target SNR in dB

# sine waveform generation with time vector
t = np.linspace(1, 100, 750)
x_volts = 20*np.sin(t/(2*np.pi))
x_watts = x_volts ** 2
x_db = 10 * np.log10(x_watts)

# Calculate signal power and convert to dB
sig_avg_watts = np.mean(x_watts)
sig_avg_db = 10 * np.log10(sig_avg_watts)
print("SMR in dB = ", sig_avg_db)

# Calculate noise and convert it to watts
noise_avg_db = sig_avg_db - target_snr_db
print("Average Noise power in dB = ", noise_avg_db)
noise_avg_watts = 10 ** (noise_avg_db / 10)

# Generate samples of white noise
mean_noise = 0
noise_volts = np.random.normal(mean_noise, np.sqrt(noise_avg_watts), len(x_watts))

# Add noise to original sine waveform signal
y_volts = x_volts + noise_volts

# Plots in dB
y_watts = y_volts ** 2
y_db = 10 * np.log10(y_watts)

# Plots
figure, axis = plt.subplots(3, 2)
axis[0,0].plot(t, x_db)
axis[0,0].set_title("Signal voltage vs time")
axis[0,1].plot(t, x_watts)
axis[0,1].set_title("Signal power (Watts) vs time")
axis[1,0].plot(t, x_db)
axis[1,0].set_title("Signal power (dB) vs time")
axis[1,1].plot(t, noise_volts)
axis[1,1].set_title("Gaussian noise vs time")
axis[2,0].plot(t, y_volts)
axis[2,0].set_title("Signal with noise vs time")
axis[2,1].plot(t, y_db)
axis[2,1].set_title("Signal with noise (dB) vs time")
plt.tight_layout()
plt.show()

AWGN Output Plots

The plots below illustrate the output of the AWGN Python code:

AWGN python output plots

SNR to Resolution Converter

SNR to Resolution Converter

Convert between Signal-to-Noise Ratio (SNR) and resolution in N bits using our online converter. Includes SNR to resolution and resolution to SNR conversion.

snr
resolution
signal noise ratio

THD, SNR to SINAD Converter

Convert between Total Harmonic Distortion (THD), Signal-to-Noise Ratio (SNR), and Signal-to-Noise and Distortion Ratio (SINAD) values.

signal processing
sinad
snr
AM Modulation Simulation with Python

AM Modulation Simulation with Python

Simulate Amplitude Modulation (AM) and demodulation using Python. Includes code for generating AM modulated data and demonstrating AM demodulation.

am modulation
signal processing
python
ASK Modulation in Python: Code and Explanation

ASK Modulation in Python: Code and Explanation

Explore Amplitude Shift Keying (ASK) modulation using Python. Includes code, explanation of principles, and waveform visualizations for digital data transmission.

ask modulation
python
signal processing
AWGN Impairment Simulation in MATLAB

AWGN Impairment Simulation in MATLAB

MATLAB code demonstrating Additive White Gaussian Noise (AWGN) impairment and its effect on constellation diagrams with BPSK, QPSK, 16QAM, and 64QAM modulation.

awgn
matlab
impairment