zpklp2bsc
Zero-pole-gain lowpass to complex bandstop frequency transformation
Syntax
[Z2,P2,K2,AllpassNum,AllpassDen]
= zpklp2bsc(Z,P,K,Wo,Wt)
Description
[Z2,P2,K2,AllpassNum,AllpassDen]
= zpklp2bsc(Z,P,K,Wo,Wt)
returns zeros, Z
2,
poles, P
2, and gain factor, K
2,
of the target filter transformed from the real lowpass prototype by
applying a first-order real lowpass to complex bandstop frequency
transformation.
It also returns the numerator, AllpassNum
,
and the denominator, AllpassDen
, of the allpass
mapping filter. The prototype lowpass filter is given with zeros, Z
,
poles, P
, and gain factor, K
.
This transformation effectively places one feature of an original
filter, located at frequency -Wo, at the required
target frequency location, Wt1, and the second
feature, originally at +
Wo,
at the new location, Wt2. It is assumed that
Wt2 is greater than Wt1.
Additionally the transformation swaps passbands with stopbands in
the target filter.
Relative positions of other features of an original filter do not change in the target filter. This means that it is possible to select two features of an original filter, F1 and F2, with F1 preceding F2. Feature F1 will still precede F2 after the transformation. However, the distance between F1 and F2 will not be the same before and after the transformation.
Choice of the feature subject to the lowpass to bandstop transformation is not restricted only to the cutoff frequency of an original lowpass filter. In general it is possible to select any feature; e.g., the stopband edge, the DC, the deep minimum in the stopband, or other ones.
Lowpass to bandpass transformation can also be used for transforming other types of filters; e.g., real notch filters or resonators can be doubled and positioned at two distinct desired frequencies at any place around the unit circle forming a pair of complex notches/resonators.
Examples
Design a prototype real IIR halfband filter using a standard elliptic approach:
[b, a] = ellip(3,0.1,30,0.409); z = roots(b); p = roots(a); k = b(1); [z2,p2,k2] = zpklp2bsc(z, p, k, 0.5, [0.2, 0.3]);
Verify the result by comparing the prototype filter with the target filter:
filterAnalyzer(b,a,k2*poly(z2),poly(p2),FrequencyRange="centered");
Arguments
Variable | Description |
---|---|
Z | Zeros of the prototype lowpass filter |
P | Poles of the prototype lowpass filter |
K | Gain factor of the prototype lowpass filter |
Wo | Frequency value to be transformed from the prototype filter. It should be normalized to be between 0 and 1, with 1 corresponding to half the sample rate. |
Wt | Desired frequency locations in the transformed target filter. They should be normalized to be between -1 and 1, with 1 corresponding to half the sample rate. |
Z2 | Zeros of the target filter |
P2 | Poles of the target filter |
K2 | Gain factor of the target filter |
AllpassNum | Numerator of the mapping filter |
AllpassDen | Denominator of the mapping filter |
Version History
Introduced in R2011a