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

《DSP using MATLAB》示例Example4.6

时间:2016-11-27 07:49:35      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:.com   hit   bsp   ges   运行   alt   title   div   http   

技术分享

用到的z变换的性质:

技术分享

技术分享

继续解题:

技术分享

技术分享

上代码:

b = [0,0,0, 0.25, -0.5, 0.0625]; a = [1, -1, 0.75, -0.25, 0.0625];               % polynomials coefficients
[delta,n] = impseq(0, 0, 7);

figure(‘NumberTitle‘, ‘off‘, ‘Name‘, ‘Example4.6 Impulse Sequence‘)
set(gcf,‘Color‘,‘white‘); 
%subplot(2,1,1); 
stem(n,delta); title(‘Impulse sequence ‘);  xlabel(‘n‘); ylabel(‘delta(n)‘); grid on;

x_check_sequence = filter(b, a, delta);                                          % check sequence

x_ori_seq = [(n-2) .* (1/2) .^ (n-2) .* cos(pi*(n-2)/3)] .* stepseq(2, 0, 7);    % original sequence

  运行结果:

技术分享

技术分享

 

《DSP using MATLAB》示例Example4.6

标签:.com   hit   bsp   ges   运行   alt   title   div   http   

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

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