0% found this document useful (0 votes)
9 views8 pages

DSP Practical 6 - Merged

The document discusses an experiment to find the linear convolution of two sequences x(n) and h(n) using Matlab. The linear convolution is plotted and also validated manually. The experiment is successful.

Uploaded by

21610
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views8 pages

DSP Practical 6 - Merged

The document discusses an experiment to find the linear convolution of two sequences x(n) and h(n) using Matlab. The linear convolution is plotted and also validated manually. The experiment is successful.

Uploaded by

21610
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 8

NAME : VINAY SINGH

ROLL NO. : 21/595


SEMESTER : V
SUBJECT : DIGITAL SIGNAL PROCESSING
COLLEGE :MAHARAJA AGRASEN COLLEGE

UNIVERSITY OF DELHI
EXPERIMENT NO. 6

Aim: Find the linear convolution of x(n)=[7 5 4 0] and h(n)=[0 3 6 2 9]


Also validate the results by solving the convolution manually.
Apparatus Required : Matlab and laptop
(A) Program:

clc;
clear;
close;
n=-7:1:7;
x=[7,5,4,0];
h=[0,3,6,2,9];
y=conv(x,h);
subplot(3,1,1);
stem(x);
xlabel('n');
ylabel('x[n]');
title('Input sequence x[n]');
subplot(3,1,2);
stem(h);
xlabel('n');
ylabel('h[n]');
title('Input sequence h[n]');
subplot(3,1,3);
stem(y);
xlabel('n');
ylabel('y[n]');
title('Linear
convolution');
OUTPUT :-

Result: The linear convolution has been plotted Also validate the results by solving the convolution
manually successfully.

You might also like