Function:[ r, p, k, e ] = residue( B, A, TOL )
r: the residue terms.
p: the pole values.
k: the coefficients of a direct polynomial term.
e: the powers of the denominators in the partial function terms.
Example:
octave: > b = [ 1, 1, 1 ]
octave: > a = [ 1, -5, 8, 4 ]
octave: > [ r, p, k, e ] = residue( b, a )
r = [ -2, 7, 3 ]
p = [ 2, 2, 1 ]
k = [](0x0)
e = [ 1, 2, 1 ]
See Also: