summaryrefslogtreecommitdiff
path: root/3812/CH2/EX2.2/2_2.sce
blob: bdf19a1d4f2f8727f18e571574e0ceeacefd388b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Example 2_2
//Find the convolution of two continuous time signal
clc;
t=-8:1/100:8;
for i=1:length(t)
x(i)=3*cos(2.*t(i));
h(i)=exp(-abs(t(i)));
end
y=convol(x,h);
figure
plot2d(t,h);
title('Impulse responce');
figure
plot2d(t,x);
title('Input signal');
figure
t2=-16:1/100:16
plot2d(t2,y);
title('Output signal');