blob: 5d64123944a95ee8230df1a08cb92f6c181e869e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Example 2.1
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');
|