blob: 356a23826fa075e119303d0c5c30557ad281921f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Example 8.1
//Determine the convolution of the two finite duration sequence
clc;
x=[1,1,1];
n1=-1:1;
h=[1,1,1];
n2=-1:1;
y=convol(x,h);
n=-2:1:2;
disp(y,'y[n]=');
a = gca ();
a.y_location ="origin";
a.x_location ="origin";
plot2d3(n,round(y),5);
poly1=a.children(1).children (1);
poly1.thickness=2;
xtitle('Plot of sequence y[n]','n','y[n]');
funcprot(0);
|