| Filter Design Toolbox | ![]() |
Zero-pole-gain lowpass to complex M-band frequency transformation
Syntax
Description
[Z2,P2,K2,AllpassNum,AllpassDen] = zpklpmbc(Z,P,K,Wo,Wt)
returns zeros, Z2, poles, P2, and gain factor, K2, of the target filter transformed from the real lowpass prototype by applying an Mth-order real lowpass to complex multibandpass 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 locations, Wt1,...,WtM.
Choice of the feature subject to this transformation is not restricted to the cutoff frequency of an original lowpass filter. In general it is possible to select any feature, for example, the stopband edge, the DC, the deep minimum in the stopband, or other ones.
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.
This transformation can also be used for transforming other types of filters; e.g., to replicate notch filters and resonators at any required location.
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); [z1,p1,k1] = zpklp2mbc(z, p, k, 0.5, [2 4 6 8]/10, 'pass'); [z2,p2,k2] = zpklp2mbc(z, p, k, 0.5, [2 4 6 8]/10, 'stop');
Verify the result by comparing the prototype filter with the target filter:
Arguments
Z
Zeros of the prototype lowpass filter
See Also
zpkftransf, allpasslp2mbc, iirlp2mbc
| zpklp2mb | zpklp2xc | ![]() |