

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Write a program to verification of circular convolution, matlab code and result
Typology: Assignments
1 / 2
This page cannot be seen from the preview
Don't miss anything!


RAKESH ASERY (09EC73)
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]