Skip to main content

How Eigenvalue Decomposition Helps in Noise Reduction


Eigenvalue decomposition helps reduce noise by retaining only the dominant (larger) eigenvalues in the eigenvalue matrix while discarding the smaller ones. It decomposes the covariance matrix of the original data using the Principal Component Analysis (PCA) method. The eigenvectors form an orthogonal basis, and the corresponding eigenvalues indicate how much variance (signal) is captured along each eigenvector direction.

In signal processing and data science, noise reduction is critical for improving the quality of data. One effective technique for this is Eigenvalue Decomposition (EVD) applied to the covariance matrix of the dataset.


Step-by-Step: Noise Reduction with Eigenvalue Decomposition

Let’s say you have a dataset represented by a covariance matrix \( C \). Here’s the process mathematically:

1. Perform Eigenvalue Decomposition on \( C \):

\[ C = V \Lambda V^T \]

Where:

  • \( V \) contains the eigenvectors (principal components).
  • \( \Lambda \) is a diagonal matrix of eigenvalues.

2. Remove Noise

Identify and discard the eigenvectors associated with small eigenvalues. These components typically represent noise because they account for very little variance in the data.

3. Reconstruct the Denoised Covariance Matrix

Reconstruct the cleaned (denoised) version of the covariance matrix using only the top \( k \) eigenvectors and eigenvalues:

\[ C_{\text{reduced}} = V_{\text{reduced}} \Lambda_{\text{reduced}} V_{\text{reduced}}^T \]

This reconstruction preserves the directions of highest variance (signal) while filtering out the less significant components (noise).

Eigenvalue decomposition of a Hermitian (or symmetric) covariance matrix is a powerful technique for noise reduction. By analyzing the eigenvalues and retaining only the components with significant variance, we can effectively reduce noise while preserving essential data structure.


Matrix Example

Given a symmetric covariance matrix:

\[ C = \begin{bmatrix} 4 & 2 \\ 2 & 3 \end{bmatrix} \]

Its eigenvalues are approximately \( \lambda_1 = 5.561 \), \( \lambda_2 = 1.438 \), and the corresponding eigenvectors form matrix \( V \).

We reduce noise by zeroing out the smaller eigenvalue:

\[ \Lambda_{\text{reduced}} = \begin{bmatrix} 5.561 & 0 \\ 0 & 0 \end{bmatrix} \]

Reconstruct the denoised matrix:

\[ C_{\text{reduced}} = V \Lambda_{\text{reduced}} V^T \approx \begin{bmatrix} 3.458 & 2.693 \\ 2.693 & 2.104 \end{bmatrix} \]

This retains the main structure (signal) and removes low-variance noise.


MATLAB Code


% Step 1: Generate a clean sine wave signal
n = 1000;              % Number of time samples
t = linspace(0, 2*pi, n)';
freq = 3;              % Frequency in Hz
X_clean = sin(freq * t); % Clean 1D sine wave

% Create a multi-dimensional version (e.g., repeat with phase shifts)
X = [X_clean, sin(freq * t + pi/4), sin(freq * t + pi/2)];

% Step 2: Add Gaussian noise to the signal
noise = 0.3 * randn(size(X));
X_noisy = X + noise;

% Step 3: Compute the covariance matrix of the noisy signal
C_noisy = cov(X_noisy);

% Step 4: Perform eigenvalue decomposition
[V, D] = eig(C_noisy);

% Step 5: Sort eigenvalues and eigenvectors in descending order
[eigenvalues, idx] = sort(diag(D), 'descend');
V_sorted = V(:, idx);

% Step 6: Retain top-k components (e.g., k = 2)
k = 2;
V_reduced = V_sorted(:, 1:k);

% Step 7: Project the noisy data onto the reduced eigen-space
X_projected = X_noisy * V_reduced;

% Step 8: Reconstruct (denoise) the data from the reduced components
X_denoised = X_projected * V_reduced';

% Step 9: Plot results
figure;

subplot(3, 1, 1);
plot(t, X(:, 1), 'b'); title('Original Sine Wave (1st Dimension)');
xlabel('Time'); ylabel('Amplitude');

subplot(3, 1, 2);
plot(t, X_noisy(:, 1), 'r'); title('Noisy Sine Wave (1st Dimension)');
xlabel('Time'); ylabel('Amplitude');

subplot(3, 1, 3);
plot(t, X_denoised(:, 1), 'g'); title('Denoised Sine Wave (1st Dimension)');
xlabel('Time'); ylabel('Amplitude');

Further Reading


People are good at skipping over material they already know!

View Related Topics to







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

Power Spectral Density Calculation Using FFT in MATLAB

📘 Overview 🧮 Steps to calculate the PSD of a signal 🧮 MATLAB Codes 📚 Further Reading Power spectral density (PSD) tells us how the power of a signal is distributed across different frequency components, whereas Fourier Magnitude gives you the amplitude (or strength) of each frequency component in the signal. Steps to calculate the PSD of a signal Firstly, calculate the fast Fourier transform (FFT) of a signal. Then, calculate the Fourier magnitude (absolute value) of the signal. Square the Fourier magnitude to get the power spectrum. To calculate the Power Spectral Density (PSD), divide the squared magnitude by the product of the sampling frequency (fs) and the total number of samples (N). Formula: PSD = |FFT|^2 / (fs * N) Sampling frequency (fs): The rate at which the continuous-time signal is sampled (in ...

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

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 UGC Net Electronic Science Question Paper With Answer Key Download Pdf [June 2025] with full explanation UGC Net Electronic Science Question Paper With Answer Key Download Pdf [December 2024] UGC Net Paper 1 With Answer Key Download Pdf [Sep 2024] with full explanation UGC Net Electronic Science Question Paper With Answer Key Download Pdf [Aug 2024] with full explanation UGC Net Paper 1 With Answer Key Download...

MATLAB code for BER vs SNR for M-QAM, M-PSK, QPSk, BPSK, ...(with Online Simulator)

🧮 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; snr_db = -5:2:25; 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) ber_psk_results(i, :) = berawgn(snr_db, 'psk', psk_orders(i), 'nondiff'); end for i = 1:length(qam_orders) ber_qam_results(i, :) = berawgn(snr_db, 'qam', qam_orders(i)); end figure; semilogy(snr_db, ber_psk_results(1, :), 'o-', 'LineWidth', 1.5, 'DisplayName', 'BPSK'); hold on; for i = 2:length(psk_orders) semilogy(snr_db, ber_psk_results(i, :), 'o-', 'DisplayName', sprintf('%d-PSK', psk_orde...

ASK, FSK, and PSK (with MATLAB + Online Simulator)

📘 ASK Theory 📘 FSK Theory 📘 PSK Theory 📊 Comparison 🧮 MATLAB Codes 🎮 Simulator ASK or OFF ON Keying ASK is a simple (less complex) Digital Modulation Scheme where we vary the modulation signal's amplitude or voltage by the message signal's amplitude or voltage. We select two levels (two different voltage levels) for transmitting modulated message signals. Example: "+5 Volt" (upper level) and "0 Volt" (lower level). To transmit binary bit "1", the transmitter sends "+5 Volts", and for bit "0", it sends no power. The receiver uses filters to detect whether a binary "1" or "0" was transmitted. Fig 1: Output of ASK, FSK, and PSK modulation using MATLAB for a data stream "1 1 0 0 1 0 1 0" ( Get MATLAB Code ) ...

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

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

Online Simulator for ASK, FSK, and PSK

Try our new Digital Signal Processing Simulator!   •   Interactive ASK, FSK, and BPSK tools updated for 2025. Start Now Interactive Modulation Simulators Visualize binary modulation techniques (ASK, FSK, BPSK) in real-time with adjustable carrier and sampling parameters. 📡 ASK Simulator 📶 FSK Simulator 🎚️ BPSK Simulator 📚 More Topics ASK Modulator FSK Modulator BPSK Modulator More Topics Simulator for Binary ASK Modulation Digital Message Bits Carrier Freq (Hz) Sampling Rate (...