Main Content

residuez

Z-transform partial-fraction expansion

Description

example

[ro,po,ko] = residuez(bi,ai) finds the residues, poles, and direct terms of a partial fraction expansion of the ratio of numerator and denominator polynomials, b and a.

[bo,ao] = residuez(ri,pi,ki) with three input arguments and two output arguments, converts the partial fraction expansion back to polynomials with coefficients in row vectors b and a.

Examples

collapse all

Compute the partial-fraction expansion corresponding to the third-order IIR lowpass filter described by the transfer function

H(z)=0.05634(1+z-1)(1-1.0166z-1+z-2)(1-0.683z-1)(1-1.4461z-1+0.7957z-2).

Express the numerator and denominator as polynomial convolutions.

b0 = 0.05634;
b1 = [1  1];
b2 = [1 -1.0166 1];
a1 = [1 -0.683];
a2 = [1 -1.4461 0.7957];

b = b0*conv(b1,b2);
a = conv(a1,a2);

Compute the residues, poles, and direct terms of the partial-fraction expansion.

[r,p,k] = residuez(b,a)
r = 3×1 complex

  -0.1153 - 0.0182i
  -0.1153 + 0.0182i
   0.3905 + 0.0000i

p = 3×1 complex

   0.7230 + 0.5224i
   0.7230 - 0.5224i
   0.6830 + 0.0000i

k = -0.1037

Plot the poles and zeros of the transfer function and overlay the poles you just found.

zplane(b,a)
hold on
plot(p,'^r')
hold off

Use residuez again to reconstruct the transfer function.

[bn,an] = residuez(r,p,k)
bn = 1×4

    0.0563   -0.0009   -0.0009    0.0563

an = 1×4

    1.0000   -2.1291    1.7834   -0.5435

Input Arguments

collapse all

Polynomial coefficients, specified as vectors. Vectors b and a specify the coefficients of the polynomials of the discrete-time system b(z)/a(z) in descending powers of z.

B(z)=b0+b1z1+b2z2++bmzmA(z)=a0+a1z1+a2z2++anzn

If there are multiple roots and a > n-1,

B(z)A(z)=r(1)1p(1)z1++r(n)1p(n)z1+k(1)+k(2)z1++k(mn+1)z(mn)

Residues of the partial fraction, specified as a vector.

Poles of the partial fraction, specified as a vector.

Direct terms, specified as a row vector.

Output Arguments

collapse all

Residues of the partial fraction, returned as a vector.

Pole of the partial fraction, returned as a vector. The number of poles is

n = length(a)-1 = length(r) = length(p)

If p(j) = ... = p(j+s-1) is a pole of multiplicity s, then the expansion includes terms of the form

r(j)1p(j)z1+r(j+1)(1p(j)z1)2++r(j+sr1)(1p(j)z1)s

Direct terms, returned as a row vector. The direct term coefficient vector k is empty if length(b) is less than length(a); otherwise:

length(k) = length(b) - length(a) + 1

Polynomial coefficients, returned as vectors.

Algorithms

residuez converts a discrete time system, expressed as the ratio of two polynomials, to partial fraction expansion, or residue, form. It also converts the partial fraction expansion back to the original polynomial coefficients.

Note

Numerically, the partial fraction expansion of a ratio of polynomials is an ill-posed problem. If the denominator polynomial is near a polynomial with multiple roots, then small changes in the data, including round-off errors, can cause arbitrarily large changes in the resulting poles and residues. You should use state-space or pole-zero representations instead.

residuez applies standard MATLAB® functions and partial fraction techniques to find r, p, and k from b and a. It finds

  • The direct terms a using deconv (polynomial long division) when length(b) > length(a)-1.

  • The poles using p = roots(a).

  • Any repeated poles, reordering the poles according to their multiplicities.

  • The residue for each nonrepeating pole pj by multiplying b(z)/a(z) by 1/(1 - pjz−1) and evaluating the resulting rational function at z = pj.

  • The residues for the repeated poles by solving

    S2*r2 = h - S1*r1
    

    for r2 using \. h is the impulse response of the reduced b(z)/a(z), S1 is a matrix whose columns are impulse responses of the first-order systems made up of the nonrepeating roots, and r1 is a column containing the residues for the nonrepeating roots. Each column of matrix S2 is an impulse response. For each root pj of multiplicity sj, S2 contains sj columns representing the impulse responses of each of the following systems.

    11pjz1,1(1pjz1)2,,1(1pjz1)sj

    The vector h and matrices S1 and S2 have n + xtra rows, where n is the total number of roots and the internal parameter xtra, set to 1 by default, determines the degree of over-determination of the system of equations.

Note

The residue function in the standard MATLAB language is very similar to residuez. It computes the partial fraction expansion of continuous-time systems in the Laplace domain (see reference [1]), rather than discrete-time systems in the z-domain as does residuez.

References

[1] Oppenheim, Alan V., Ronald W. Schafer, and John R. Buck. Discrete-Time Signal Processing. 2nd Ed. Upper Saddle River, NJ: Prentice Hall, 1999.

Version History

Introduced before R2006a