Write a program to verification of circular convolution., Assignments of Signal Processing and Analysis

Write a program to verification of circular convolution, matlab code and result

Typology: Assignments

2015/2016

Available from 04/09/2023

rakeshasery
rakeshasery 🇮🇳

55 documents

1 / 2

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
RAKESH ASERY (09EC73)
Object: - Write a program to verification of circular convolution.
x=input('Enter the sequence of x[n]');
h=input('Enter the sequence of h[n]');
p=input('Enter value of p');
subplot(3,1,1);
stem(x);
title('seuqence x[n]');
xlabel('n');
ylabel('x[n]');
subplot(3,1,2);
stem(h);
title('seuqence h[n]');
xlabel('n');
ylabel('h[n]');
y=cconv(x,h,p);
subplot(3,1,3);
stem(y);
title('Circular Convolution');
xlabel('n');
ylabel('y[n]');
pf2

Partial preview of the text

Download Write a program to verification of circular convolution. and more Assignments Signal Processing and Analysis in PDF only on Docsity!

RAKESH ASERY (09EC73)

Object: - Write a program to verification of circular convolution.

x=input('Enter the sequence of x[n]'); h=input('Enter the sequence of h[n]'); p=input('Enter value of p'); subplot(3,1,1); stem(x); title('seuqence x[n]'); xlabel('n'); ylabel('x[n]'); subplot(3,1,2); stem(h); title('seuqence h[n]'); xlabel('n'); ylabel('h[n]'); y=cconv(x,h,p); subplot(3,1,3); stem(y); title('Circular Convolution'); xlabel('n'); ylabel('y[n]');

RAKESH ASERY (09EC73) Figure:- the sequence of x[n] [1 6 0 2 ] the sequence of h[n] [0 8 3 ] Enter value of p Circular convolution of x[n]and h[n]= [16 14 51 18]