Last chance! 50% off unlimited learning
Sale ends in
Finds the residues, poles, and direct term of a Partial Fraction Expansion of the ratio of two polynomials.
residue(b, a, tol = 0.001)rresidue(r, p, k, tol = 0.001)
coefficients of numerator polynomial
coefficients of denominator polynomial
tolerance. Default: 0.001
residues of partial fraction expansion
poles of partial fraction expansion
direct term
For residue
, a list containing r
, p
and
k
. For rresidue
, a list containing b
and a
.
The call res <- residue(b, a)
computes the partial fraction expansion
for the quotient of the polynomials, b
and a
.
The call res <- rresidue(r, p, k)
performs the inverse operation and
computes the reconstituted quotient of polynomials, b(s) / a(s), from the
partial fraction expansion; represented by the residues, poles, and a direct
polynomial specified by r
, p
and k
, and the pole
multiplicity e
.
# NOT RUN {
b <- c(-4, 8)
a <- c(1, 6, 8)
rpk <- residue(b, a)
ba <- rresidue(rpk$r, rpk$p, rpk$k)
# }
Run the code above in your browser using DataLab