zoukankan      html  css  js  c++  java
  • 《DSP using MATLAB》Problem 4.11

    代码:

    %% ----------------------------------------------------------------------------
    %%            Output Info about this m-file
    fprintf('
    ***********************************************************
    ');
    fprintf('        <DSP using MATLAB> Problem 4.11 
    
    ');
    
    banner();
    %% ----------------------------------------------------------------------------
    
    format rat;
    %% -------------------------------------------------
    %%            1      X1(z)    rightsided
    %% -------------------------------------------------
    
    b = [1, -1, -4, 4];             nb = [0:3]; 
    a = [1, -11/4, 13/8, -1/4];     na = [0:3];                 
    
    %[p, r] = deconv(b, a)
    %[p, np, r, nr] = deconv_m(b, nb, a, na)
    [R, p, C] = residuez(b, a)
    
    %[delta, n] = impseq(0,0,7);
    %x = filter(b, a, delta)
    
    %[b,a] = residuez(R, p, C)
    
    %Mp = abs((p))'
    %Ap = angle((p))'
    
    figure('NumberTitle', 'off', 'Name', 'Problem 4.11.1  X1(z)')
    set(gcf,'Color','white'); 
    zplane(b, a);                                           % row vector
    title('Zero-Pole Plot');  xlabel('Re'); ylabel('Im'); grid on;
    
    
    
    fprintf('
    -------------------- X2(z) ------------------ 
    
    ');
    %% -------------------------------------------------
    %%            2      X2(z)    absolutely summable
    %% -------------------------------------------------
    
    b = [1, 1, -4, 4];              nb = [0:3]; 
    a = [1, -11/4, 13/8, -1/4];     na = [0:3];                 
    
    %[p, r] = deconv(b, a)
    %[p, np, r, nr] = deconv_m(b, nb, a, na)
    [R, p, C] = residuez(b, a)
    
    %[delta, n] = impseq(0,0,7);
    %x = filter(b, a, delta)
    
    %[b,a] = residuez(R, p, C)
    
    %Mp = abs((p))'
    %Ap = angle((p))'
    
    figure('NumberTitle', 'off', 'Name', 'Problem 4.11.2 X2(z)')
    set(gcf,'Color','white'); 
    zplane(b, a);                                           % row vector
    title('Zero-Pole Plot');  xlabel('Re'); ylabel('Im'); grid on;
    
    
    
    fprintf('
    -------------------- X3(z) ------------------ 
    
    ');
    %% -------------------------------------------------
    %%            3      X3(z)    leftsided
    %% -------------------------------------------------
    
    b = [1, -3, 4, 1];              nb = [0:3]; 
    a = [1, -4, 1, -0.16];          na = [0:3];                 
    
    %[p, r] = deconv(b, a)
    %[p, np, r, nr] = deconv_m(b, nb, a, na)
    [R, p, C] = residuez(b, a)
    
    %[delta, n] = impseq(0,0,7);
    %x = filter(b, a, delta)
    
    %[b,a] = residuez(R, p, C)
    
    Mp = abs((p))'
    Ap = angle((p))'/pi              % pole angle in pi units
    
    figure('NumberTitle', 'off', 'Name', 'Problem 4.11.3 X3(z)')
    set(gcf,'Color','white'); 
    zplane(b, a);                                           % row vector
    title('Zero-Pole Plot');  xlabel('Re'); ylabel('Im'); grid on;
    
    
    fprintf('
    -------------------- X4(z) ------------------ 
    
    ');
    %% -------------------------------------------------
    %%            4      X4(z)    leftsided
    %% -------------------------------------------------
    
    b = [0, 0, 1];                  nb = [0:2]; 
    a = [1, 2, 1.25, 0.25];         na = [0:3];                 
    
    %[p, r] = deconv(b, a)
    %[p, np, r, nr] = deconv_m(b, nb, a, na)
    [R, p, C] = residuez(b, a)
    
    %[delta, n] = impseq(0,0,7);
    %x = filter(b, a, delta)
    
    %[b,a] = residuez(R, p, C)
    
    %Mp = abs((p))'
    %Ap = angle((p))'
    
    figure('NumberTitle', 'off', 'Name', 'Problem 4.11.4 X4(z)')
    set(gcf,'Color','white'); 
    zplane(b, a);                                           % row vector
    title('Zero-Pole Plot');  xlabel('Re'); ylabel('Im'); grid on;
    
    
    fprintf('
    -------------------- X5(z) ------------------ 
    
    ');
    %% -------------------------------------------------
    %%            5      X5(z)    leftsided
    %% -------------------------------------------------
    
    b = [0, 0, 0, 1];                  nb = [0:3]; 
    a = [1, 0, -0.5, 0, 0.25*0.25];    na = [0:3];                 
    
    %[p, r] = deconv(b, a)
    %[p, np, r, nr] = deconv_m(b, nb, a, na)
    [R, p, C] = residuez(b, a)
    
    %[delta, n] = impseq(0,0,7);
    %x = filter(b, a, delta)
    
    %[b,a] = residuez(R, p, C)
    
    %Mp = abs((p))'
    %Ap = angle((p))'
    
    figure('NumberTitle', 'off', 'Name', 'Problem 4.11.5 X5(z)')
    set(gcf,'Color','white'); 
    zplane(b, a);                                           % row vector
    title('Zero-Pole Plot');  xlabel('Re'); ylabel('Im'); grid on;
    

      运行结果:

    牢记: 1、如果你决定做某事,那就动手去做;不要受任何人、任何事的干扰。2、这个世界并不完美,但依然值得我们去为之奋斗。
  • 相关阅读:
    转 PHP in_array() 函数
    转 PHP Cookies
    华硕笔记本怎样调整屏幕亮度
    转 Oracle 12c: Managing Resources
    转 SQLPLUS中SQL换行执行
    转 php中$_request与$_post、$_get的区别
    TDB 12c : Transportable Database
    oracle (DBaaS) 服务介绍
    domain admin域管理员
    转 【TTS】AIX平台数据库迁移到Linux--基于RMAN(真实环境)
  • 原文地址:https://www.cnblogs.com/ky027wh-sx/p/8531386.html
Copyright © 2011-2022 走看看