1 重叠保留法:
n=0:161;
a=n+3;%重叠保留法
b=[1 2 3 4];a(163)=0;a(164)=0;
subplot 311,stem(0:163,a);
xlabel(‘n’);ylabel(‘x(n)’);
subplot 312,stem(0:3,b);axis([0,180,0,5]);
xlabel(‘n’);ylabel(‘h(n)’);
d=[];
for i=1:41;%分成了41组
if i==1
c=[0,0,0,a(1),a(2),a(3),a(4)];
else
c=[a(4*i-6),a(4*i-5),a(4*i-4),a(4*i-3),a(4*i-2),a(4*i-1),a(4*i)];
end
e=conv(b,c);
if i《=40
f=[e(4),e(5),e(6),e(7)];
else
f=[e(4),e(5),e(6),e(7),e(8),e(9),e(10)];
end
d=[d,f];
end
subplot 313,stem(d);
xlabel(‘n’);ylabel(‘x(n)*h(n)’);
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
全部0条评论
快来发表一下你的评论吧 !