summaryrefslogtreecommitdiff
path: root/162/CH7/EX7.6/example76.sce
blob: 544077082f53f07721d97d7f828d272e60d8009e (plain)
1
2
3
4
5
6
7
//Example 7.6
//Convolution of given sequences
clc;
x=[1,-2,2];
y=[2,5,3,6];
X=convol(x,y);
disp(X,'Convolution of the given sequences');