figure(2)
subplot(121)
stem(modi,'marker','none') %有竖线,无点
stem(modi,'LineStyle','none')%只显示数据点,不画竖线
axis([0 3262 -inf inf]);
axis([-inf inf 0 9e6]);
xlabel('n');ylabel('VF(n)');
strcat('MVP',char(39),'(n)')
bar(x,y);
clearvars -except x y
plot线型 数据点 。。。
************************************