zoukankan      html  css  js  c++  java
  • DSP using MATLAB 示例 Example3.13

    上代码:

    w = [0:1:500]*pi/500;                           % freqency between 0 and +pi, [0,pi] axis divided into 501 points.
    H = exp(j*w) ./ (exp(j*w) - 0.9 * ones(1,501));
    
    magH  = abs(H);  angH  = angle(H);  realH  = real(H);  imagH  = imag(H);
    
    %% --------------------------------------------------------------------
    %%              START H's  mag ang real imag
    %% --------------------------------------------------------------------
    figure('NumberTitle', 'off', 'Name', 'H its Magnitude and Angle, Real and Imaginary Part');
    set(gcf,'Color','white'); 
    subplot(2,2,1); plot(w/pi,magH); grid on;  axis([0,1,0,10]); 
    title('Magnitude Part');
    xlabel('frequency in pi units'); ylabel('Magnitude  |H|'); 
    subplot(2,2,3); plot(w/pi, angH/pi); grid on; % axis([-1,1,-1,1]);
    title('Angle Part');
    xlabel('frequency in pi units'); ylabel('Radians/pi');
    
    subplot('2,2,2'); plot(w/pi, realH); grid on;
    title('Real Part');
    xlabel('frequency in pi units'); ylabel('Real');
    subplot('2,2,4'); plot(w/pi, imagH); grid on;
    title('Imaginary Part');
    xlabel('frequency in pi units'); ylabel('Imaginary');
    %% -------------------------------------------------------------------
    %%             END X's  mag ang real imag
    %% -------------------------------------------------------------------
    

      运行结果:

    牢记: 1、如果你决定做某事,那就动手去做;不要受任何人、任何事的干扰。2、这个世界并不完美,但依然值得我们去为之奋斗。
  • 相关阅读:
    CNZZ友盟访问明细的采集办法
    实时采集新加坡交易所A50指数
    深入理解DIP、IoC、DI以及IoC容器
    PHP依赖注入(DI)和控制反转(IoC)详解
    PHP 的命令行模式
    浅析PHP中的闭包和匿名函数
    PHP_CodeSniffer 使用攻略
    PSR规范学习笔记
    Composer 的简介、安装及使用
    win7下使用手动安装composer
  • 原文地址:https://www.cnblogs.com/ky027wh-sx/p/6076219.html
Copyright © 2011-2022 走看看