summaryrefslogtreecommitdiff
path: root/2279/CH4/EX4.27/Ex4_27.sce
blob: a90807b058603402fc8220c09a51080fb5fa8c6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//Example 4.27
//Interconnectiuion of LTI systems
n2=0:18;
h1=[1 5 10 11 8 4 1];
h2=[1 1 zeros(1,5)];
h3=[1 1 zeros(1,5)];
a=convol(h1,h2);
h=convol(a,h3);
x=[1 -1];
n1=[0 1];
n3=0:19;
y=convol(x,h);
subplot(3,1,1)
xtitle("input signal x(n)","....................n","x[n]");
plot(n1,x,'.');
subplot(3,1,2)
xtitle("system response h(n)","....................n","h[n]");
plot(n2,h,'.');
subplot(3,1,3)
xtitle("output signal y(n)",".............................n","y[n]");
plot(n3,y,'.');