码迷,mamicode.com
首页 > 其他好文 > 详细

《DSP using MATLAB》示例Example7.5

时间:2017-03-26 01:23:57      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:using   com   代码   sub   white   pre   type   技术   atl   

技术分享

技术分享

代码:

h = [-4, 1, -1, -2, 5, 6, 6, 5, -2, -1, 1, -4];
M = length(h); n = 0:M-1;
[Hr, w, b, L] = Hr_Type2(h);
b
L

bmax = max(b) + 1; bmin = min(b) - 1;

figure(‘NumberTitle‘, ‘off‘, ‘Name‘, ‘Exameple 7.5‘)
set(gcf,‘Color‘,‘white‘); 

subplot(2,2,1); stem(n, h); axis([-1, 2*L+1, bmin, bmax]); grid on;
xlabel(‘n‘); ylabel(‘h(n)‘); title(‘Impulse Response‘);

subplot(2,2,3); stem(1:L, b); axis([-1, 2*L+1, bmin, bmax]); grid on;
xlabel(‘n‘); ylabel(‘b(n)‘); title(‘b(n) coefficients‘);

subplot(2,2,2); plot(w/pi, Hr); grid on;
xlabel(‘frequency in \pi units‘); ylabel(‘Hr‘); title(‘Type-2 Amplitude Response‘);

subplot(2,2,4); zplane(h); grid on;
xlabel(‘real axis‘); ylabel(‘imaginary axis‘); title(‘Pole-Zero Plot‘);

  运行结果:

技术分享

技术分享

        ω=π时,振幅谱为零。

《DSP using MATLAB》示例Example7.5

标签:using   com   代码   sub   white   pre   type   技术   atl   

原文地址:http://www.cnblogs.com/ky027wh-sx/p/6619001.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!