Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function ButterFilter(Order: Integer; CutoffFreq: TDoubleArray; FilterType: TFilterType; Analog: Boolean; A: TMtx; B: TVec; C: TVec; out d: Double): Double; | The resulting transfer function is returned in the state-space form with A,B,C,D variables. |
| 2 | function ButterFilter(Order: Integer; CutoffFreq: TDoubleArray; FilterType: TFilterType; Analog: Boolean; Num: TVec; Den: TVec; IirFrequencyTransform: TIirFrequencyTransform): Double; | The resulting transfer function is returned in the numerator/denumerator form with num and den. |
| 3 | function ButterFilter(Order: Integer; CutoffFreq: TDoubleArray; FilterType: TFilterType; Analog: Boolean; z: TVec; p: TVec; out k: Double; IirFrequencyTransform: TIirFrequencyTransform): Double; | Design a complete Butterworth IIR filter of the given Order, cutoff(s) CutoffFreq and band type FilterType, returning the transfer function in zero-pole form (z, p, k): H(z)=k (prod_i (z-z_i))/(prod_i (z-p_i)). Set Analog=True for an s-plane design or Analog=False for a z-plane (digital) design; for a digital design CutoffFreq lies in $(0,1)$ with sampling frequency 2 (so 1 = Nyquist). FilterType is lp/hp (1 cutoff) or bp/bs (2 cutoffs); a bandpass/bandstop design has twice the prototype order. IirFrequencyTransform selects when the frequency-band transform is applied (state-space-analog, zero-pole-analog or zero-pole-discrete). Digital poles satisfy |p_i|<1 (stable). The function result is the natural 3 dB cutoff W_c. The other overloads return the same filter as num/den (ba), second-order sections (sos) or state space (A,B,C,D). NOTE: a digital cutoff outside $(0,1)$ is NOT range-checked and yields a degenerate filter. |
| 4 | function ButterFilter(Order: Integer; CutoffFreq: TDoubleArray; FilterType: TFilterType; Analog: Boolean; sos: TVec; IirFrequencyTransform: TIirFrequencyTransform): Double; | The resulting transfer function is returned in the second order section form stored in the sos variable. |
Overload 1: function ButterFilter(Order: Integer; CutoffFreq: TDoubleArray; FilterType: TFilterType; Analog: Boolean; A: TMtx; B: TVec; C: TVec; out d: Double): Double;
The resulting transfer function is returned in the state-space form with A,B,C,D variables.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Order | Integer | |
| 2 | CutoffFreq | TDoubleArray | |
| 3 | FilterType | TFilterType | |
| 4 | Analog | Boolean | |
| 5 | A | TMtx | source TMtx |
| 6 | B | TVec | source TVec |
| 7 | C | TVec | source TVec |
| 8 | d | Double |
Returns: Double
Overload 2: function ButterFilter(Order: Integer; CutoffFreq: TDoubleArray; FilterType: TFilterType; Analog: Boolean; Num: TVec; Den: TVec; IirFrequencyTransform: TIirFrequencyTransform): Double;
The resulting transfer function is returned in the numerator/denumerator form with num and den.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Order | Integer | |
| 2 | CutoffFreq | TDoubleArray | |
| 3 | FilterType | TFilterType | |
| 4 | Analog | Boolean | |
| 5 | Num | TVec | source TVec |
| 6 | Den | TVec | source TVec |
| 7 | IirFrequencyTransform | TIirFrequencyTransform |
Returns: Double
Overload 3: function ButterFilter(Order: Integer; CutoffFreq: TDoubleArray; FilterType: TFilterType; Analog: Boolean; z: TVec; p: TVec; out k: Double; IirFrequencyTransform: TIirFrequencyTransform): Double;
Design a complete Butterworth IIR filter of the given Order, cutoff(s) CutoffFreq and band type FilterType, returning the transfer function in zero-pole form (z, p, k): H(z)=k (prod_i (z-z_i))/(prod_i (z-p_i)). Set Analog=True for an s-plane design or Analog=False for a z-plane (digital) design; for a digital design CutoffFreq lies in with sampling frequency 2 (so 1 = Nyquist). FilterType is lp/hp (1 cutoff) or bp/bs (2 cutoffs); a bandpass/bandstop design has twice the prototype order. IirFrequencyTransform selects when the frequency-band transform is applied (state-space-analog, zero-pole-analog or zero-pole-discrete). Digital poles satisfy |p_i|<1 (stable). The function result is the natural 3 dB cutoff W_c. The other overloads return the same filter as num/den (ba), second-order sections (sos) or state space (A,B,C,D). NOTE: a digital cutoff outside is NOT range-checked and yields a degenerate filter.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Order | Integer | |
| 2 | CutoffFreq | TDoubleArray | |
| 3 | FilterType | TFilterType | |
| 4 | Analog | Boolean | |
| 5 | z | TVec | source TVec |
| 6 | p | TVec | source TVec |
| 7 | k | Double | |
| 8 | IirFrequencyTransform | TIirFrequencyTransform |
Returns: Double
Design Butterworth filter of Order with CutoffFreq frequencies and of FilterType type. Set Analog to True, to request and analog filter design in s-plane or set it to false to obtain a digital filter design in z-plane. The CutoffFreq must be in range between 0 and 1 (Sampling frequency = 2) in case of a digital filter design.
IIrFrequencyTransform specifies when and how will the frequency band transformation be applied. The resulting transfer function is returned in the zero-pole form, with z,p,k variables.
uses MtxExpr, Math387, MtxVec, SignalUtils, MtxVecTee, MtxVecEdit, IirFilters,
LinearSystems;
procedure TForm1.Button1Click(Sender: TObject);
var z,p, num,den, FreqFr,Response: Vector;
Order: integer;
k,Bw,Wc: double;
WcArray: TDoubleArray; //modified 3dB frequency
begin
SetLength(WcArray,2);
Order := ButterOrder([0.2,0.3,0.6,0.7],0.2,50,ftBandstop,WcArray);
ButterFilter(Order,WcArray,ftBandstop,false,num,den);
// Alternative 1. Specify the order and the 3 dB frequencies explicitely:
//
// ButterFilter(5,[0.2,0.7],ftBandstop,false,num,den);
// Alternative 2. Specifying the 3 dB frequencies explicitely
// will result in 3 dB ripple (and not 0.2 as requested) in the passband,
// but one coulde always move the 3 dB frequencies a little:
//
// ButterFilter(5,[0.22,0.68],ftBandstop,false,num,den);
// Alternative 3. Specifying the order explicitely
// will not ensure 50 dB attenuation in the edges of the stopband,
// but one can increase filter order:
//
// ButterFilter(10,[0.22,0.68],ftBandstop,false,num,den);
FrequencyResponse(num,den,Response,64);
DrawIt(Response);
end;
Overload 4: function ButterFilter(Order: Integer; CutoffFreq: TDoubleArray; FilterType: TFilterType; Analog: Boolean; sos: TVec; IirFrequencyTransform: TIirFrequencyTransform): Double;
The resulting transfer function is returned in the second order section form stored in the sos variable.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Order | Integer | |
| 2 | CutoffFreq | TDoubleArray | |
| 3 | FilterType | TFilterType | |
| 4 | Analog | Boolean | |
| 5 | sos | TVec | source TVec |
| 6 | IirFrequencyTransform | TIirFrequencyTransform |
Returns: Double
The sos variable can be passed directly to the IirInitBQ filter initialization routine. Second order section form delivers substantially higher numerical stability and range than filtering with num/den form which is used by the IirInit routine.