首页 > 代码库 > 《DSP using MATLAB》示例Example7.21
《DSP using MATLAB》示例Example7.21
代码:
h = [1, 2, 3, 4, 3, 2, 1]/15; M = length(h); n = 0:M-1; [Hr, w, a, L] = Hr_Type1(h); a L amax = max(a) + 1; amin = min(a) - 1; figure(‘NumberTitle‘, ‘off‘, ‘Name‘, ‘Exameple 7.21‘) set(gcf,‘Color‘,‘white‘); subplot(2,2,1); stem(n, h); axis([-1, 2*L+1, amin, amax]); xlabel(‘n‘); ylabel(‘h(n)‘); title(‘Impulse Response‘); grid on; subplot(2,2,3); stem(0:L, a); axis([-1, 2*L+1, amin, amax]); xlabel(‘n‘); ylabel(‘a(n)‘); title(‘a(n) coefficients‘); grid on; subplot(2,2,2); plot(w/pi, Hr); grid on; xlabel(‘frequency in \pi units‘); ylabel(‘Hr‘); title(‘Type-1 Amplitude Response‘); subplot(2,2,4); zplane(h); grid on; xlabel(‘real axis‘); ylabel(‘imaginary axis‘); title(‘Pole-Zero Plot‘);
运行结果:
《DSP using MATLAB》示例Example7.21
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。