Main Content

iirbpc2bpc

Transform IIR complex bandpass filter to IIR complex bandpass filter with different characteristics

Description

[Num,Den,AllpassNum,AllpassDen] = iirbpc2bpc(B,A,Wo,Wt) transform IIR complex bandpass filter to IIR complex bandpass filter with different characteristics.

The iirbpc2bpc function returns the numerator and denominator vectors, Num and Den, respectively of the target filter transformed from the complex bandpass prototype by applying a first-order complex bandpass to complex bandpass frequency transformation. For more details, see IIR Complex Bandpass Frequency Transformation.

The function also returns the numerator, AllpassNum, and the denominator, AllpassDen, of the allpass mapping filter. The prototype lowpass filter is specified with the numerator B and a denominator A.

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

example

[tfiltObj,AllpassNum,AllpassDen] = iirbpc2bpc(pfiltObj,Wo,Wt) specifies the input prototype complex bandpass IIR filter as a filter object. The function returns the target complex bandpass IIR filter as a filter object. (since R2026a)

example

Examples

collapse all

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);

Create a complex passband from 0.25π to 0.75π.

[bc,ac] = iirlp2bpc(b,a,0.5,[0.25 0.75]);

Move the bandpass to between –0.3π and 0.1π.

[num,den] = iirbpc2bpc(bc,ac,[0.25 0.75],[-0.3 0.1]);

Compare the three filters.

hvft = filterAnalyzer(b,a,bc,ac,num,den,...
    FrequencyRange="centered",...
    FilterNames=["Prototype","PositiveComplexBand","Target"]);

Since R2026a

Design and implement a lowpass IIR filter object using the designLowpassIIR function. Transform this filter to a complex bandpass filter with a passband from 0.3π to 0.5π using iirlp2bpc.

psosFilt = designLowpassIIR(FilterOrder=30,HalfPowerFrequency=0.5,DesignMethod="butter",...
    SystemObject=true);
pcomplexBandpassFilt = iirlp2bpc(psosFilt,0.2,[0.3 0.5])
pcomplexBandpassFilt = 
  dsp.SOSFilter with properties:

            Structure: 'Direct form II transposed'
    CoefficientSource: 'Property'
            Numerator: [15×3 double]
          Denominator: [15×3 double]
       HasScaleValues: false

  Show all properties

Create a dsp.DynamicFilterVisualizer object to visualize the magnitude response of the filter.

filterViz = dsp.DynamicFilterVisualizer(NormalizedFrequency=true,YLimits=[-80 20]);
filterViz(pcomplexBandpassFilt)

Move the passband to [0.6π 0.8π] using iirbpc2bpc. The function implements the transformed filter as a dsp.SOSFilter object.

tcomplexBandpassShiftFilt = iirbpc2bpc(pcomplexBandpassFilt,[0.3 0.5],[0.6 0.8])
tcomplexBandpassShiftFilt = 
  dsp.SOSFilter with properties:

            Structure: 'Direct form II transposed'
    CoefficientSource: 'Property'
            Numerator: [15×3 double]
          Denominator: [15×3 double]
       HasScaleValues: false

  Show all properties

Visualize the magnitude response of the transformed filter.

filterViz(tcomplexBandpassShiftFilt)

Input Arguments

collapse all

Numerator of the prototype lowpass filter, specified as a row vector.

Data Types: single | double
Complex Number Support: Yes

Denominator of the prototype lowpass filter, specified as a row vector.

Data Types: single | double
Complex Number Support: Yes

Since R2026a

Prototype complex bandpass IIR filter, specified as one of these filter objects:

Frequency values to be transformed from the prototype filter, specified as a two-element vector. Frequencies in Wo must be normalized to be between -1 and 1, with 1 corresponding to half the sample rate.

Data Types: single | double

Desired frequency locations in the transformed target filter, specified as a two-element vector. Frequencies in Wt must be normalized to be between -1 and 1, with 1 corresponding to half the sample rate.

Data Types: single | double

Output Arguments

collapse all

Numerator of the target filter, returned as a row vector.

Data Types: single | double
Complex Number Support: Yes

Denominator of the target filter, returned as a row vector.

Data Types: single | double
Complex Number Support: Yes

Since R2026a

Target complex bandpass IIR filter, returned as one of these filter objects:

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

Data Types: single | double
Complex Number Support: Yes

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

Data Types: single | double

More About

collapse all

Version History

Introduced in R2011a

expand all