博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《DSP using MATLAB》示例Example7.4
阅读量:5080 次
发布时间:2019-06-12

本文共 791 字,大约阅读时间需要 2 分钟。

代码:

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);aLamax = 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(ω)没有任何限制。

转载于:https://www.cnblogs.com/ky027wh-sx/p/6618977.html

你可能感兴趣的文章
C#中集合ArrayList与Hashtable的使用
查看>>
从一个标准 url 里取出文件的扩展名
查看>>
map基本用法
查看>>
poj-1163 动态规划
查看>>
Golang之interface(多态,类型断言)
查看>>
Redis快速入门
查看>>
BootStrap---2.表格和按钮
查看>>
Linear Algebra lecture 2 note
查看>>
CRC计算模型
查看>>
Ajax之404,200等查询
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
csv HTTP简单表服务器
查看>>
OO设计的接口分隔原则
查看>>
数据库连接字符串大全 (转载)
查看>>
java类加载和对象初始化
查看>>
对于负载均衡的理解
查看>>
django简介
查看>>
window.event在IE和Firefox的异同
查看>>
常见的js算法面试题收集,es6实现
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>