blob: afbe02690c7a969dadd003f1a78794847bffbedb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//Example 2_1
//Find the convolution of two continous time signal
clc;
t=-8:1/100:8;
for i=1:length(t)
x(i)=exp(-t(i)^2);
h(i)=3*t(i)^2;
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');
|