Skip to content

Commit d255199

Browse files
authored
Add files via upload
1 parent 213104d commit d255199

6 files changed

+226
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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+

Computing Circular Convolution .m

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
% V8_2 Computing Circular Convolution
3+
4+
%%% Developed by Dr. M. Venu Gopala Rao,
5+
6+
7+
% -----------------------------------------------------------------------
8+
9+
clear all; close all; clc;
10+
11+
12+
x = [1 2 2]; h = [1 2 3 4];
13+
N = max(length(x),length(h));
14+
15+
y = cconv(x,h,N);
16+
n = 0:N-1;
17+
18+
figure();
19+
subplot(3,1,1); stem(0:length(x)-1,x,'r','fill','LineWidth',1.5);
20+
xlabel('Time index ---->'); ylabel('Magnitude---->');
21+
title('Sequence x[n]'); axis([-1 4 0 2.2]);
22+
23+
subplot(3,1,2); stem(0:length(h)-1,h,'b','fill','LineWidth',1.5);
24+
xlabel('Time index---->'); ylabel('Magnitude---->');
25+
title('Sequence h[n]')
26+
axis([-1 4 0 4.2]);
27+
28+
subplot(3,1,3); stem(n,y,'m','fill','LineWidth',1.5);
29+
xlabel('Time index---->'); ylabel('Magnitude---->');
30+
title('Circularly convolved sequence,y[n]')
31+
axis([-1 4 0 max(y)+1]);

Computing Circular Correlation.m

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
% V8_4 Computing Circular Correlation
3+
4+
%%% Developed by Dr. M. Venu Gopala Rao,
5+
6+
7+
% -----------------------------------------------------------------------
8+
9+
clear all; close all; clc;
10+
11+
x = [1 2 2 1]+1i; h = [1 3 4 1]-2*1i;
12+
N = max(length(x),length(h));
13+
n = 0:N-1;
14+
15+
y = cconv(x,conj(fliplr(h)),7); % Compute Correlation using cconv;
16+
z = xcorr(x,h); % Compute using xcorr
17+
18+
M = length(x)+length(h)-1;
19+
m = 0:M-1;
20+
21+
figure();
22+
subplot(4,1,1); stem(0:length(x)-1,x,'r','fill','LineWidth',1.5);
23+
xlabel('Time index ---->'); ylabel('Magnitude---->');
24+
title('Sequence x[n]'); axis([-1 8 0 2.2]);
25+
26+
subplot(4,1,2); stem(0:length(h)-1,h,'b','fill','LineWidth',1.5);
27+
xlabel('Time index---->'); ylabel('Magnitude---->');
28+
title('Sequence h[n]'); axis([-1 8 0 4.2]);
29+
30+
subplot(4,1,3); stem(y,'m','fill','LineWidth',1.5);
31+
xlabel('Time index---->'); ylabel('Magnitude---->');
32+
title('Circularly Correlated sequence using cconv.m');axis([-1 8 0 max(abs(y))+3]);
33+
34+
subplot(4,1,4); stem(z,'k','fill','LineWidth',1.5);
35+
xlabel('Time index---->'); ylabel('Magnitude---->');
36+
title('Circularly Correlated sequence using xcorr.m')
37+
axis([-1 8 0 max(abs(z))+3]);
38+
39+
norm(y-z)
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
% V8_1 Computing circular shift of a sequence
3+
4+
%%% Developed by Dr. M. Venu Gopala Rao,
5+
6+
7+
% -----------------------------------------------------------------------
8+
clear all; close all; clc;
9+
10+
N = 10;
11+
n = 0:7; x = 10*(0.8).^n;
12+
n = 0:N-1; x = [x, zeros(1,2)];
13+
y = cirshftt(x,3,N);
14+
z = cirshftt(x,-4,N);
15+
16+
figure();
17+
subplot(3,1,1); stem(n,x,'r','fill','LineWidth',1.5);
18+
xlabel('n---->'); ylabel('Magnitude---->');
19+
title('Original sequence'); axis([-1 10 -0.2 11]);
20+
21+
subplot(3,1,2); stem(n,y,'b','fill','LineWidth',1.5);
22+
xlabel('n---->'); ylabel('Magnitude---->');
23+
title('Circularly shifted sequence,x((n-3) mod N),N=10')
24+
axis([-1 10 -0.2 11]);
25+
26+
subplot(3,1,3); stem(n,z,'b','fill','LineWidth',1.5);
27+
xlabel('n---->'); ylabel('Magnitude---->');
28+
title('Circularly shifted sequence,x((n+4) mod N),N=10')
29+
axis([-1 10 -0.2 11]);

circonvt.m

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
3+
function y = circonvt(x1,x2,N)
4+
5+
% N-point circular convolution between x1 and x2: (time-domain)
6+
7+
% -------------------------------------------------------------
8+
9+
% [y] = circonvt(x1,x2,N)
10+
% y = output sequence containing the circular convolution
11+
% x1 = input sequence of length N1 <= N
12+
% x2 = input sequence of length N2 <= N
13+
% N = size of circular buffer
14+
% Method: y(n) = sum (x1(m)*x2((n-m) mod N))
15+
16+
% Check for length of x1
17+
18+
if length(x1) > N
19+
error('N must be >= the length of x1')
20+
end
21+
22+
% Check for length of x2
23+
24+
if length(x2) > N
25+
error('N must be >= the length of x2')
26+
end
27+
28+
x1=[x1 zeros(1,N-length(x1))]
29+
x2=[x2 zeros(1,N-length(x2))]
30+
31+
m = [0:1:N-1];
32+
x2 = x2(mod(-m,N)+1);
33+
H = zeros(N,N);
34+
35+
for n = 1:1:N
36+
H(n,:) = cirshftt(x2,n-1,N);
37+
end
38+
39+
y = x1*H';
40+

cirshftt.m

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
3+
function y = cirshftt(x,m,N)
4+
% Circular shift of m samples wrt size N in sequence x: (time domain)
5+
% -------------------------------------------------------------------
6+
% [y] = cirshftt(x,m,N)
7+
% y = output sequence containing the circular shift
8+
% x = input sequence of length <= N
9+
% m = sample shift
10+
% N = size of circular buffer
11+
% Method: y(n) = x((n-m) mod N)
12+
% Check for length of x
13+
if length(x) > N
14+
error('N must be >= the length of x')
15+
end
16+
x = [x zeros(1,N-length(x))];
17+
n = [0:1:N-1]; n = mod(n-m,N); y = x(n+1);

0 commit comments

Comments
 (0)