zoukankan      html  css  js  c++  java
  • 《DSP using MATLAB》示例Example7.4

    代码:

    h = [-4, 1, -1, -2, 5, 6, 5, -2, -1, 1, -4];
    M = length(h); n = 0:M-1;
    [Hr, w, a, L] = Hr_Type1(h);
    a
    L
    
    amax = max(a) + 1; amin = min(a) - 1;
    
    figure('NumberTitle', 'off', 'Name', 'Exameple 7.4')
    set(gcf,'Color','white'); 
    
    subplot(2,2,1); stem(n, h); axis([-1, 2*L+1, amin, amax]);
    xlabel('n'); ylabel('h(n)'); title('Impulse Response'); grid on;
    
    subplot(2,2,3); stem(0:L, a); axis([-1, 2*L+1, amin, amax]);
    xlabel('n'); ylabel('a(n)'); title('a(n) coefficients'); grid on;
    
    subplot(2,2,2); plot(w/pi, Hr); grid on;
    xlabel('frequency in pi units'); ylabel('Hr'); title('Type-1 Amplitude Response');
    
    subplot(2,2,4); zplane(h); grid on;
    xlabel('real axis'); ylabel('imaginary axis'); title('Pole-Zero Plot');
    

      运行结果:

        从上述图中看出,在ω=0,或者ω=π,振幅谱Hr(ω)没有任何限制。

    牢记: 1、如果你决定做某事,那就动手去做;不要受任何人、任何事的干扰。2、这个世界并不完美,但依然值得我们去为之奋斗。
  • 相关阅读:
    ie兼容问题整理
    jQuery Easing 使用方法及其图解
    前端模块化学习
    velocity常用语句速查表
    table插件实现
    表单自动提交问题整理
    移动端开发
    工具的使用及配置
    《TCP/IP详解 卷1:协议》读书笔记
    iOS 内存泄漏
  • 原文地址:https://www.cnblogs.com/ky027wh-sx/p/6618977.html
Copyright © 2011-2022 走看看