zoukankan      html  css  js  c++  java
  • 《DSP using MATLAB》示例Example 8.8

    %% ------------------------------------------------------------------------
    %%            Output Info about this m-file
    fprintf('
    ***********************************************************
    ');
    fprintf('        <DSP using MATLAB> Exameple 8.8 
    
    ');
    
    time_stamp = datestr(now, 31);
    [wkd1, wkd2] = weekday(today, 'long');
    fprintf('      Now is %20s, and it is %9s  
    ', time_stamp, wkd2);
    %% ------------------------------------------------------------------------
    
    Wp = 0.2*pi; Ws = 0.3*pi; Rp = 1; As =16;
    
    Ripple = 10 ^ (-Rp/20); Attn = 10 ^ (-As/20);
    
    % Analog filter design:
    [b, a] = afd_elip(Wp, Ws, Rp, As);
    
    % Calculation of second-order sections:
    [C, B, A] = sdir2cas(b, a)
    
    % Calculation of Frequency Response:
    [db, mag, pha, ww] = freqs_m(b, a, 0.5*pi);
    
    % Calculation of Impulse Response:
    [ha, x, t] = impulse(b, a);
    
    
    %% -----------------------------------------------------------------
    %%                             Plot
    %% -----------------------------------------------------------------  
    
    figure('NumberTitle', 'off', 'Name', 'Exameple 8.8')
    set(gcf,'Color','white'); 
    M = 0.5;                          % Omega max
    
    subplot(2,2,1); plot(ww/pi, mag); axis([0, M, 0, 1.2]); grid on;
    xlabel(' Analog frequency in pi units'); ylabel('|H|'); title('Magnitude Response');
    set(gca, 'XTickMode', 'manual', 'XTick', [0, 0.2, 0.3, M]);
    set(gca, 'YTickMode', 'manual', 'YTick', [0, 0.1585, 0.8913, 1]);
    
    subplot(2,2,2); plot(ww/pi, db); axis([0, M, -30, 10]); grid on;
    xlabel('Analog frequency in pi units'); ylabel('Decibels'); title('Magnitude in dB ');
    set(gca, 'XTickMode', 'manual', 'XTick', [0, 0.2, 0.3, M]);
    set(gca, 'YTickMode', 'manual', 'YTick', [-30, -16, -1, 0]);
    
    subplot(2,2,3); plot(ww/pi, pha/pi); axis([0, M, -1.1, 1.1]); grid on;
    xlabel('Analog frequency in pi nuits'); ylabel('radians in pi units'); title('Phase Response');
    set(gca, 'XTickMode', 'manual', 'XTick', [0, 0.2, 0.3, M]);
    set(gca, 'YTickMode', 'manual', 'YTick', [-1:0.5:1]);
    
    
    subplot(2,2,4); plot(t, ha); axis([0, 50, -0.1, 0.3]); grid on;
    xlabel('time in seconds'); ylabel('ha(t)'); title('Impulse Response');
    

      运行结果:

    牢记: 1、如果你决定做某事,那就动手去做;不要受任何人、任何事的干扰。2、这个世界并不完美,但依然值得我们去为之奋斗。
  • 相关阅读:
    文件的编码是一个怎样的机制
    MySQL——修改root密码的4种方法(以windows为例)
    python中nltk的下载安装方式
    VNC轻松连接远程Linux桌面
    Linux 查看磁盘分区、文件系统、磁盘的使用情况相关的命令和工具介绍
    shell脚本中>/dev/null的含义
    执行shell脚本时提示bad interpreter:No such file or directory的解决办法
    TabLayout+ViewPager的简单使用
    让listView gridView全部扩展开
    购物车中的观察者模式的应用
  • 原文地址:https://www.cnblogs.com/ky027wh-sx/p/6691831.html
Copyright © 2011-2022 走看看