|
| 1 | + |
| 2 | +% V8_3 |
| 3 | +%Program to find Circular Convolution of two sequences |
| 4 | +% using DFT and IDFT method |
| 5 | + |
| 6 | +%%% Developed by Dr. M. Venu Gopala Rao, |
| 7 | + |
| 8 | + |
| 9 | +% ----------------------------------------------------------------------- |
| 10 | + |
| 11 | + |
| 12 | +clear all; close all; clc; |
| 13 | + |
| 14 | +% x = input('Enter first sequence'); |
| 15 | +% h = input('Enter second sequence'); |
| 16 | + |
| 17 | +x = [1 2 2]; h = [1 2 3 4]; |
| 18 | + |
| 19 | +if (length(h)<length(x)); |
| 20 | + c=length(x)-length(h); |
| 21 | + h=[h,zeros(1,c)] |
| 22 | +elseif (length(x)<length(h)); |
| 23 | + c=length(h)-length(x); |
| 24 | + x=[x,zeros(1,c)] |
| 25 | +else |
| 26 | + disp('lengths are equal'); |
| 27 | +end |
| 28 | + |
| 29 | +N = max(length(x),length(h)); |
| 30 | + |
| 31 | +n = 0:N-1; |
| 32 | +X = fft(x); |
| 33 | +H = fft(h); |
| 34 | +Y = X.*H; |
| 35 | + |
| 36 | +y = ifft(Y); |
| 37 | + |
| 38 | +k = 0 : N-1; |
| 39 | + |
| 40 | +% ------------------------------------------------------------------- |
| 41 | +figure(); |
| 42 | +subplot(3,2,1); stem(0:length(x)-1,x,'r','fill','LineWidth',1.5); |
| 43 | +xlabel('Time index ---->'); ylabel('Magnitude---->'); |
| 44 | +title('Sequence x[n]'); axis([-1 4 0 2.2]); |
| 45 | + |
| 46 | +subplot(3,2,3); stem(0:length(h)-1,h,'b','fill','LineWidth',1.5); |
| 47 | +xlabel('Time index---->'); ylabel('Magnitude---->'); |
| 48 | +title('Sequence h[n]') |
| 49 | +axis([-1 4 0 4.2]); |
| 50 | + |
| 51 | +subplot(3,2,5); stem(n,y,'m','fill','LineWidth',1.5); |
| 52 | +xlabel('Time index---->'); ylabel('Magnitude---->'); |
| 53 | +title('Circularly convolved sequence y[n](DFT and IDFT)') |
| 54 | +axis([-1 4 0 max(y)+1]); |
| 55 | + |
| 56 | +% figure(); |
| 57 | +subplot(3,2,2); stem(0:length(X)-1,abs(X),'m','fill','LineWidth',1.5); |
| 58 | +xlabel('k---->'); ylabel('Magnitude---->'); |
| 59 | +title('Spectrum of Sequence x[n], X[k}'); axis([-1 4 -0.2 5.4]); |
| 60 | + |
| 61 | +subplot(3,2,4); stem(0:length(H)-1,abs(H),'k','fill','LineWidth',1.5); |
| 62 | +xlabel('k---->'); ylabel('Magnitude---->'); |
| 63 | +title('Spectrum of Sequence h[n], H[k}') |
| 64 | +axis([-1 4 -0.2 11]); |
| 65 | + |
| 66 | +subplot(3,2,6); stem(k,abs(Y),'b','fill','LineWidth',1.5); |
| 67 | +xlabel('k---->'); ylabel('Magnitude---->'); |
| 68 | +title('Spectrum of Circularly convoled sequencey[n], Y[k}') |
| 69 | +axis([-1 4 -0.2 51]); |
| 70 | + |
0 commit comments