Main Content

ca2tf

Convert coupled allpass filter to transfer function form

Description

[b,a] = ca2tf(d1,d2) returns the vector of coefficients of b and a. b and a corresponds to the numerator and the denominator of the transfer function H(z), respectively, where d1 and d2 are real vectors corresponding to the denominators of the allpass filters H1(z) and H2(z).

H(z)=B(z)/A(z)=12[H1(z)+H2(z)]

[b,a] = ca2tf(d1,d2,beta) returns the vector of coefficients b and the vector of coefficients a corresponding to the numerator and the denominator of the transfer function H(z), respectively, where d1 and d2 are complex vectors and beta is a complex scalar.

H(z)=B(z)/A(z)=12[(β¯)H1(z)+βH2(z)]

[b,a,bp] = ca2tf(d1,d2) also returns the vector bp of real coefficients corresponding to the numerator of the power-complementary filter G(z), where d1 and d2 are real vectors.

G(z)=Bp(z)/A(z)=12[H1(z)H2(z)]

[b,a,bp] = ca2tf(d1,d2,beta) also returns the vector of coefficients bp of real or complex coefficients that correspond to the numerator of the power-complementary filter G(z), where d1 and d2 are complex vectors and beta is a complex scalar.

G(z)=Bp(z)/A(z)=12j[(β¯)H1(z)+βH2(z)]

Examples

collapse all

Create a coupled allpass filter.

[b,a] = cheby1(10,.5,.4);

The tf2ca function returns the denominators of the coupled allpass filter.

[d1,d2,beta] = tf2ca(b,a);

Reconstruct the original and the power-complementary filters using the ca2tf function.

[num,den,numpc] = ca2tf(d1,d2,beta);

Plot the magnitude response of the original filter and the power-complementary one.

opts = filterAnalysisOptions(Analysis="magnitude",MagnitudeMode="squared");
filterAnalyzer(num,den,numpc,den,AnalysisOptions=opts)

Input Arguments

collapse all

Denominator of the allpass filter H1(z), specified as a real- or complex-valued vector.

Data Types: single | double
Complex Number Support: Yes

Denominator of the allpass filter H2(z), specified as a real- or complex-valued vector.

Data Types: single | double
Complex Number Support: Yes

Complex scalar of magnitude 1.

Data Types: single | double
Complex Number Support: Yes

Output Arguments

collapse all

Numerator coefficients of the transfer function H(z), returned as a real- or complex-valued vector.

Data Types: double
Complex Number Support: Yes

Denominator coefficients of the transfer function H(z), returned as a real- or complex-valued vector.

Data Types: double
Complex Number Support: Yes

Numerator coefficients of the power-complementary filter G(z), returned as a real- or complex-valued vector.

Data Types: double
Complex Number Support: Yes

References

[1] Vaidyanathan, P. P., and Sanjit K. Mitra. Robust Digital Filter Structures: A Direct Approach. IEEE Circuits and Systems Magazine 19, no. 1 (2019): 14–32. https://doi.org/10.1109/MCAS.2018.2889204.

[2] Vaidyanathan, P. P. Multirate Systems and Filter Banks. Prentice-Hall Signal Processing Series. Englewood Cliffs, N.J: Prentice Hall, 1993.

Extended Capabilities

Version History

Introduced in R2011a

See Also

| | |