% Convolve exponential with impulse clear [x,n] = expseq(0,-5,15,.5); h = impseq(2,-5,15); subplot(2,1,1),stem(n,x) xlabel('n') ylabel('x[n]') subplot(2,1,2),stem(n,h) xlabel('n') ylabel('h[n]') offset = 5; pause convdemo