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




Contact Us

Name

Email *

Message *

Popular Posts

PSD Calculation with FFT: MATLAB Tutorial for Signal Analysis

  Implementation Steps 1. FFT Computes the Frequency Content of a Signal FFT converts a time-domain signal to the frequency domain. If: The signal is sampled at rate $f_s$ You compute an $N_{\text{FFT}}$-point FFT Then each FFT bin corresponds to a frequency resolution of: $$\Delta f = \frac{f_s}{N_{\text{FFT}}}$$ So the FFT gives you accurate frequency content, assuming the signal is stationary and adequately sampled (Nyquist criterion met).  2. Magnitude Squared Gives Power (Not Amplitude) $$P[k] = |X[k]|^2$$ This gives power at each frequency bin, not just amplitude. It represents how much energy is present at each frequency. It's a key step for PSD.  3. Normalization Makes the PSD Physically Meaningful The equation: $$\text{PSD}[k] = \frac{|X[k]|^2}{N_{\text{FFT}} \cdot f_s \cdot U}$$ is derived from first principles and ensures that the u...

MATLAB code for BER vs SNR for M-QAM, M-PSK, QPSK, BPSK (with Simulation)

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

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

MUSIC Algorithm Explained (with MATLAB + Simulator)

Practical Implementation of the MUSIC Algorithm The focus is on how the algorithm works computationally , not just theory, and it explains the denominator (a H E n E n H a) mathematically and intuitively. 1. Introduction The MUSIC (Multiple Signal Classification) algorithm is a high-resolution method used in signal processing and array processing to estimate the Direction of Arrival (DOA) of signals received by a sensor array. Unlike classical beamforming methods, MUSIC uses eigenvector decomposition of the covariance matrix to separate the signal subspace and noise subspace , allowing it to achieve much higher angular resolution. In practical implementations, MUSIC works by: Simulating or collecting array signals Computing the covariance matrix Performing eigenvalue decomposition Separating signal and noise subspaces Scanning possible angles using a steering vector Constructing a pseudo-spectrum where peaks indicate signal directions 2. Signal Mo...

Theoretical BER vs SNR for BPSK

Theoretical Bit Error Rate (BER) vs Signal-to-Noise Ratio (SNR) for BPSK in AWGN Channel Let’s simplify the explanation for the theoretical Bit Error Rate (BER) versus Signal-to-Noise Ratio (SNR) for Binary Phase Shift Keying (BPSK) in an Additive White Gaussian Noise (AWGN) channel. Key Points Fig. 1: Constellation Diagrams of BASK, BFSK, and BPSK [↗] BPSK Modulation Transmits one of two signals: +√Eb or −√Eb , where Eb is the energy per bit. These signals represent binary 0 and 1 . AWGN Channel The channel adds Gaussian noise with zero mean and variance N₀/2 (where N₀ is the noise power spectral density). Receiver Decision The receiver decides if the received signal is closer to +√Eb (for bit 0) or −√Eb (for bit 1) . Bit Error Rat...

Power Spectral Density Calculation Using FFT in MATLAB

📘 📘 Overview 🧮 🧮 Steps to calculate 💻 🧮 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 Hz). ...

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