Main Content

iirlp2xn

Transform IIR lowpass filter to IIR real N-point filter

Description

[num,den,allpassNum,allpassDen] = iirlp2xn(b,a,wo,wt) transforms an IIR lowpass filter to an IIR real N-point filter.

The iirlp2xn function returns the numerator and denominator coefficients of the transformed IIR N-point filter. The function also returns the numerator, allpassNum, and the denominator, allpassDen, of the Nth order allpass mapping filter. The prototype lowpass filter is specified with the numerator b and the denominator a.

The function transforms a real lowpass prototype filter to an N-point filter by applying an Nth-order real lowpass to real multipoint frequency transformation, where N is the number of features being mapped and is given by the length of the vector wo. By default, the DC feature is kept at its original location. For more details, see IIR Lowpass to IIR Real N-Point Filter Transformation.

example

[num,den,allpassNum,allpassDen] = iirlp2xn(b,a,wo,wt,pass) allows you to specify an additional parameter, pass as 'pass' or 'stop', which chooses between using the “Nyquist Mobility” and the “DC Mobility”, respectively. In the case of “Nyquist Mobility”, the DC feature is kept at an original frequency and the Nyquist feature is free to move. In the case of “DC Mobility”, the Nyquist feature stays at its original location and the DC feature is free to move.

Frequencies must be normalized to be between 0 and 1, with 1 corresponding to half the sample rate.

Examples

collapse all

Transform a lowpass IIR filter to an N-point IIR filter using the iirlp2xn function.

Input Lowpass IIR Filter

Design a prototype real IIR lowpass elliptic filter with a gain of about –3 dB at 0.5π rad/sample.

[b,a] = ellip(3,0.1,30,0.409);
filterAnalyzer(b,a)

Transform Filter Using iirlp2xn

Transform the real prototype lowpass filter to an IIR real N-point filter with one passband.

Specify the prototype filter as a vector of numerator and denominator coefficients, b and a respectively.

[num,den] = iirlp2xn(b,a,[-0.5 0.5],[0.3 0.6],"pass");

Compare the magnitude response of the filters.

filterAnalyzer(b,a,num,den,...
    FilterNames=["PrototypeFilter_TFForm",...
    "TransformedMultipointFilter"]);

You can also specify the input lowpass IIR filter as a matrix of coefficients. Pass the second-order section matrices as inputs. The transformed filter is a fourth-order section filter with one stopband. The numerator and the denominator coefficients of the transformed filter are given by num2 and den2, respectively.

ss = tf2sos(b,a);
[num2, den2] = iirlp2xn(ss(:,1:3),ss(:,4:6),[-0.5 0.5],...
    [0.3 0.6],"stop");

To visualize the magnitude response of the fourth-order section filter, first pass the filter coefficients to the dsp.FourthOrderSectionFilter object. Then, use this object as an input to the filter analyzer.

fos = dsp.FourthOrderSectionFilter(Numerator=num2,...
    Denominator=den2);

Use the sos2ctf function to convert the second-order section matrices to the cascaded transfer function form.

[b_ctf,a_ctf] = sos2ctf(ss);

Compare the magnitude response of the filters.

filterAnalyzer(b_ctf,a_ctf,fos,...
    FilterNames=["PrototypeFilterFromSOSMatrix",...
    "TransformedMultipointFilterFromSOSMatrix"]);

Copyright 2012–2024 The MathWorks, Inc.

Input Arguments

collapse all

Numerator coefficients of the prototype lowpass IIR filter, specified as either:

  • Row vector –– Specifies the values of [b0, b1, …, bn], given this transfer function form:

    H(z)=B(z)A(z)=b0+b1z1++bnzna0+a1z1++anzn,

    where n is the order of the filter.

  • Matrix –– Specifies the numerator coefficients in the form of an P-by-(Q+1) matrix, where P is the number of filter sections and Q is the order of each filter section. If Q = 2, the filter is a second-order section filter. For higher-order sections, make Q > 2.

    b=[b01b11b21...bQ1b02b12b22...bQ2b0Pb1Pb2PbQP]

    In the transfer function form, the numerator coefficient matrix bik of the IIR filter can be represented using the following equation:

    H(z)=k=1PHk(z)=k=1Pb0k+b1kz1+b2kz2++bQkzQa0k+a1kz1+a2kz2++aQkzQ,

    where,

    • a –– Denominator coefficients matrix. For more information on how to specify this matrix, see a.

    • k –– Row index.

    • i –– Column index.

    When specified in the matrix form, b and a matrices must have the same number of rows (filter sections) Q.

Data Types: single | double
Complex Number Support: Yes

Denominator coefficients for a prototype lowpass IIR filter, specified as one of these options:

  • Row vector –– Specifies the values of [a0, a1, …, an], given this transfer function form:

    H(z)=B(z)A(z)=b0+b1z1++bnzna0+a1z1++anzn,

    where n is the order of the filter.

  • Matrix –– Specifies the denominator coefficients in the form of an P-by-(Q+1) matrix, where P is the number of filter sections and Q is the order of each filter section. If Q = 2, the filter is a second-order section filter. For higher-order sections, make Q > 2.

    a=[a01a11a21aQ1a02a12a22aQ2a0Pa1Pa2PaQP]

    In the transfer function form, the denominator coefficient matrix aik of the IIR filter can be represented using the following equation:

    H(z)=k=1PHk(z)=k=1Pb0k+b1kz1+b2kz2++bQkzQa0k+a1kz1+a2kz2++aQkzQ,

    where,

    • b –– Numerator coefficients matrix. For more information on how to specify this matrix, see b.

    • k –– Row index.

    • i –– Column index.

    When specified in the matrix form, a and b matrices must have the same number of rows (filter sections) P.

Data Types: single | double
Complex Number Support: Yes

Frequency values to transform from the prototype filter, specified as a row vector. Frequencies in wo should be normalized to be between 0 and 1, with 1 corresponding to half the sample rate.

The value of N equals the length of the wo vector. Length of vectors wo and wt must be the same.

Data Types: single | double

Desired frequency locations in the transformed target filter, specified as a row vector. Frequencies in wt should be normalized to be between 0 and 1, with 1 corresponding to half the sample rate.

Length of vectors wo and wt must be the same.

Data Types: single | double

Choice of passband or stopband at DC, specified as either:

  • "pass" –– “Nyquist Mobility”. The DC feature is kept at an original frequency and the Nyquist feature is free to move.

  • "stop" –– “DC Mobility”. The Nyquist feature stays at its original location and the DC feature is free to move.

Output Arguments

collapse all

Numerator coefficients of the transformed multipoint filter, returned as one of the following:

  • Row vector of length Nn+1, where n is the order of the input filter and N is the number of features being mapped. The value of N equals the length of the wo vector.

    The num output is a row vector when the input coefficients b and a are row vectors.

  • P-by-(QN+1) matrix, where P is the number of filter sections, Q is the order of each section of the transformed filter, and N is the number of features being mapped and is given by the length of the vector wo.

    The num output is a matrix when the input coefficients b and a are matrices.

Data Types: single | double
Complex Number Support: Yes

Denominator coefficients of the transformed multipoint filter, returned as one of the following:

  • Row vector of length Nn+1, where n is the order of the input filter and N is the number of features being mapped. The value of N equals the length of the wo vector.

    The den output is a row vector when the input coefficients b and a are row vectors.

  • P-by-(QN+1) matrix, where P is the number of filter sections, Q is the order of each section of the transformed filter, and N is the number of features being mapped and is given by the length of the vector wo.

    The den output is a matrix when the input coefficients b and a are matrices.

Data Types: single | double
Complex Number Support: Yes

Numerator coefficients of the mapping filter, returned as a row vector.

Data Types: single | double

Denominator coefficients of the mapping filter, returned as a row vector.

Data Types: single | double

More About

collapse all

References

[1] Krukowski, A., G.D. Cain, and I. Kale. “Custom Designed High-Order Frequency Transformations for IIR Filters.” In 38th Midwest Symposium on Circuits and Systems. Proceedings, 1:588–91. Rio de Janeiro, Brazil: IEEE, 1996.

[2] Cain, G.D., A. Krukowski and I. Kale, “High Order Transformations for Flexible IIR Filter Design,” VII European Signal Processing Conference (EUSIPCO'94), vol. 3, pp. 1582-1585, Edinburgh, United Kingdom, September 1994.

Version History

Introduced in R2011a

See Also

Functions