Ash Convolution 1
Ash Convolution 1
Exp. No. :
Date: / /202
Convolution
AIM :
To demonstrate convolution in both continuous and discrete-time systems
and observe its effects on signals through Simulation.
APPARATUS REQUIRED:
MAT LAB Version
THEORY:
Convolution:
Continuous-time convolution:
●Definition:
Convolution is a mathematical operation that combines two signals to produce
a third signal. In continuous-time systems, it's represented by the integral:
Explanation
1
Signals and systems
Interpretation:
●Definition:
Explanation
Interpretation:
Applications of Convolution:
2
Signals and systems
SOURCE CODE:
% Define variables
syms t tau
% Convolution integral
y = int(x * h, tau, -inf, inf); % Convolution integral over –infinity to +infinity
Matlab Output :
(t^2*heaviside(t))/2
SOURCE CODE:
3
Signals and systems
4
Signals and systems
Matlab Output :
5
Signals and systems
GRAPHS:
RESULT:
6
Signals and systems