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

    代码:

    %% ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    %%            Output Info about this m-file
    fprintf('
    ***********************************************************
    ');
    fprintf('        <DSP using MATLAB> Problem 6.8 
    
    ');
    
    banner();
    %% ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    b1 = [-14.75  -12.90];  nb1 = [0:1];
    b2 = [ 24.5    26.82];  nb2 = [0:1];
    b3 = [  1   2  1];      nb3 = [0:2];
    
    a1 = [1  -7/8   3/32];  na1 = [0:2];
    a2 = [1  -1     0.5];   na2 = [0:2];
    a3 = [1   0     0.81];  na3 = [0:2];
    
    a11 = conv(a2, a3); b11 = conv(b2, b3);
    
    
    fprintf('
    Direct form: 
    ');
    b = conv(b1, a11) + conv(a1, b11)
    a = conv(a11, a1)
    
    
    fprintf('
    Convert DIRECT-form to PARALLEL-form :     
    ');
    [C, Bp, Ap] = dir2par(b, a)
    C = 0;
    
    fprintf('
    Convert DIRECT-form to CASCADE-form :     
    ');
    [b0, Bc, Ac] = dir2cas(b, a) 
    
    fprintf('
    Convert TF-form to SOS-form :     
    ');
    [sos, g] = tf2sos(b, a)
    
    fprintf('
    Convert DIRECT-form to LATTICE-LADDER-form :     
    ');
    [Klr, Clr] = dir2ladr(b, a) 
    
    fprintf('
    Convert DIRECT-form to MATLAB LATTICE-LADDER-form :     
    ');
    [K, V] = tf2latc(b, a)
    
    % -----------------------------------------
    %     START check
    % -----------------------------------------
    n = [0:7];
    delta = impseq(0, 0, 7)
    %format long
    format  short
    hcas = casfiltr(b0, Bc, Ac, delta)
    
    hpar = parfiltr(C, Bp, Ap, delta)
    
    hladr = ladrfilt(Klr, Clr, delta)
    
    hdir = filter(b, a, delta)
    % -------------------------------------------
    %       END check
    % -------------------------------------------
    
    
    figure('NumberTitle', 'off', 'Name', 'P6.8 hcas(n), hpar(n)')
    set(gcf,'Color','white'); 
    subplot(2,1,1); stem(n, hcas); 
    xlabel('n'); ylabel('hcas(n)');
    title('hcas(n)');  grid on;
    subplot(2,1,2); stem(n, hpar); 
    xlabel('n'); ylabel('hpar(n)');
    title('hpar(n)');  grid on;
    
    figure('NumberTitle', 'off', 'Name', 'P6.8 hladr(n) hdir(n)')
    set(gcf,'Color','white'); 
    subplot(2,1,1); stem(n, hladr); 
    xlabel('n'); ylabel('hladr(n)');
    title('hladr(n)');  grid on;
    subplot(2,1,2); stem(n, hdir);  
    xlabel('n'); ylabel('hdir(n)');
    title('hdir(n)');  grid on;
    

      运行结果:

           直接形式系数

             并联形式系数

            串联形式系数

            格型系数

    牢记: 1、如果你决定做某事,那就动手去做;不要受任何人、任何事的干扰。2、这个世界并不完美,但依然值得我们去为之奋斗。
  • 相关阅读:
    关于公司电脑修改host文件无法生效的问题
    Cannot access nexus-aliyun (http://maven.aliyun.com/nexus/content/groups/public) in offline mode and the artifact org.springframework
    DCL-单例模式的线程安全
    关于volatile
    关于CAS中的ABA问题存在的隐患
    无法获取 dpkg 前端锁 (/var/lib/dpkg/lock-frontend),是否有其他进程正占用它
    vue整合笔记
    vue9-axios、细节和杂项
    vue8-vuex、路径配置别名、promise
    vue07-路由 vue-router、keep-alive、tab-bar
  • 原文地址:https://www.cnblogs.com/ky027wh-sx/p/9612473.html
Copyright © 2011-2022 走看看