N=15;n1=[0:N-1];x1=n1.^0;nx1=0:14; %x(n)位置向量h1=0.8.^n1;nh1=0:14; %h(n)位置向量y1=conv(x1,h1);ny1=nx1(1)+nh1(1):nx1(end)+nh1(end);stem(ny1,y1);xlabel('n1');ylabel('y1');