Iirj
用JAVA编写的IIR过滤器库。
高通,低通,带通和带阻分别为Butterworth,Bessel和Chebyshev I / II型。
它基于IIR1库[ ],而该库又基于Vinnie Falco的DSPFilters [ ]。
用法
import uk.me.berndporr.iirj.*;
建设者
Butterworth butterworth = new Butterworth();
初始化
带阻
butterworth.bandStop(order,Samplingfreq,Center freq,Width in frequ);
带通
butterworth.bandPass(order,Samplingfreq,Center freq,Width in frequ);
低通
butterworth.lowPass(order,Samplingfr
1