分享matlab程序之——滤波器篇(高通,低通)
摘要:快毕业了,把自己写的现成的matlab函数分享给有需要的人,由于个人水平有限,写的不好请见谅,愿意拍砖的尽管拍好了。目前还不考虑读博,所以写的程序仍了可惜,所以就拿出来分享。好了不废话了,开始正题。 以下两个滤波器都是切比雪夫I型数字滤波器,不是巴特沃尔滤波器,请使用者注意! 1.低通滤波器 使用说
阅读全文
posted @
2017-04-10 21:30
tkppain
阅读(25022)
推荐(1)
IIR 滤波器的实现(C++)(转载)
摘要:转载自 http://blog.csdn.net/liyuanbhu/article/details/38849897 最近在写的一个程序需要用到IIR滤波器,而且IIR滤波器的系数需要动态调整。因此就花了点时间研究IIR 滤波器的实现。 以前用到的IIR滤波器的参数都是事先确定好的,有个网站,只要
阅读全文
posted @
2017-04-10 15:23
tkppain
阅读(898)
推荐(0)
归一化频率问题
摘要:归一化频率与实际频率是如何对应的?有没有通用的公式,在滤波器设计中经常看到归一化是对采样频率来说的,f'=f/fs,因此f'就落在[-pi,pi],对于数字频率而言,就是[-0.5,0.5]。归一化的目的:模拟信号 y(t)=cos(2*pi*f*t)采样后数字信号 x(n)=y(n/fs)=cos(2*pi*f*n/fs)因为 cos(n+2n*pi)=cos(n),所以假设 f/fs=m+delta ,其中m为整数,delta为-0.5至0.5之间的数。那么 x(n)=cos(2*pi*n*(m+delta))=cos(2*pi*delta*n).因此可以说频率 f/fs
阅读全文
posted @
2013-06-20 14:24
tkppain
阅读(3599)
推荐(0)
Quadrature Mirror Filterbanks (QMF)
摘要:Quadrature Mirror Filterbanks (QMF)Module by: Douglas L. Jones. E-mail the authorFigures is failed to load and please refer to the following link:http://cnx.org/content/m12770/latest/Although the DFT filterbanks are widely used, there is a problem with aliasing in the decimated channels. At first gl
阅读全文
posted @
2013-06-07 10:23
tkppain
阅读(361)
推荐(0)