Convolution in MATLAB: Source Code and Explanation

matlab
convolution
signal processing
source code
time domain

This document explores convolution using MATLAB, providing example source code and explanations. Convolution is a fundamental operation in signal processing. It’s worth noting that convolving two signals in the time domain is equivalent to multiplying their frequency spectra. The process involves flipping one signal, shifting it, and then multiplying its elements with the corresponding elements of the other signal.

The general formula for the convolution output z[n] is:

z[n]=X[k]\*Y[kn]z[n] = \sum X[k] \* Y[k-n]

MATLAB Code Example

The following MATLAB code demonstrates convolution without using the built-in conv function, followed by a demonstration using the built-in function for comparison.

clc;
clear all;

x = [1 2 3 4 5]; % First signal
h = [1 2];       % Second signal (impulse response)

% Manual convolution calculation
y(1) = x(1)*h(1);
y(2) = x(2)*h(1) + x(1)*h(2);
y(3) = x(3)*h(1) + x(2)*h(2);
y(4) = x(4)*h(1) + x(3)*h(2);
y(5) = x(5)*h(1) + x(4)*h(2);
y(6) = x(5)*h(2);

y  % Outputs the result of convolution between x and h vectors

len = length(y)  % Length of result(y length) = length(x) + length(h) - 1

% MATLAB built-in convolution function 'conv'
y1 = conv(x,h)  % Output as per matlab built in function
len1 = length(y1)

plot(y-y1);
title('Difference between MATLAB conv function and our code');

Explanation:

  1. Initialization: The code starts by clearing the command window and workspace. Two vectors, x and h, are defined, representing the two signals to be convolved.
  2. Manual Convolution: The code then performs the convolution manually, calculating each element of the output vector y. This illustrates the sliding-and-summing process of convolution. Each element of y is computed based on the formula provided earlier.
  3. Output: The y variable, containing the result of the manual convolution, is displayed. The length of the result y is calculated, verifying that it equals the sum of lengths of input vectors x and h minus 1.
  4. Built-in conv Function: The code then uses MATLAB’s built-in conv function to perform the same convolution. The result is stored in y1.
  5. Comparison: Finally, the code plots the difference between the manually calculated convolution (y) and the result from the conv function (y1). Ideally, this difference should be zero, confirming that the manual implementation is correct.
  6. Length: len1 stores the length of the convolution result produced by the built-in conv function.

Important Considerations

  • The length of the resulting vector y from the convolution of vectors x and h is always length(x) + length(h) - 1.
Decimation/Downsampling MATLAB Source Code

Decimation/Downsampling MATLAB Source Code

MATLAB code demonstrating decimation/downsampling, removing samples to reduce the sample rate of a signal or vector. Includes examples using exponential vectors and the 'decimate' function.

matlab
decimation
downsampling