summaryrefslogtreecommitdiff
path: root/3812/CH2/EX2.3/2_3.sce
blob: ffe4f88c5e59f236d8906da6305d74795fe062ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//Example 2_3
//Find the convolution of two continuous time signal
clc;
t=-8:1/100:8;
for i=1:length (t)
x(i)=exp(-abs(t(i)));
if t(i)>=1 then
h(i)=exp(-2*t(i));
else
h(i)=0;
end
end
t1=t;
y= convol (x,h)
figure
plot2d(t1,h);
title('Impul seresponce');
figure
plot2d(t,x);
title('Input signal');
figure
t2=-16:1/100:16
plot2d(t2,y);
title('Output signal');