Z-transform partial fraction expansion
Finds the residues, poles, and direct term of a Partial Fraction Expansion of the ratio of two polynomials.
residuez(b, a)
b
: coefficients of numerator polynomiala
: coefficients of denominator polynomialA list containing
length(b) < length(a)
)residuez
converts a discrete time system, expressed as the ratio of two polynomials, to partial fraction expansion, or residue, form.
b0 <- 0.05634 b1 <- c(1, 1) b2 <- c(1, -1.0166, 1) a1 <- c(1, -0.683) a2 <- c(1, -1.4461, 0.7957) b <- b0 * conv(b1, b2) a <- conv(a1, a2) res <- residuez(b, a)
residue
, residued
Julius O. Smith III, jos@ccrma.stanford.edu .
Conversion to R by Geert van Boxtel, G.J.M.vanBoxtel@gmail.com