实验一 离散时间序列卷积和MATLAB实现

第一题:code clear; x=[1,2,3,4,5]; h=[6,2,3,6,4,2]; n=0:length(x)-1; m=0:length(h)-1; s=0:(length(x)+length(h)-2); y=conv(x,h); subplot(131);stem(n,x);xlabel('n');ylabel('x'); subplot(132);stem(m,h);xlabe
相关文章
相关标签/搜索