//Example 7.4 //Convolution of given sequences clc; x=[1,2,3,4]; y=[1,-2]; X=convol(x,y); disp(X,'Convolution of given sequences');