Problem: Given the continuous time S transfer function defined by \[ H(s)=\frac {s^{4}+8s^{3}+16s^{2}+9s+9}{s^{3}+6s^{2}+11s+6}\] obtain the partial-fractions decomposition.
Comment: Mathematica result is easier to see visually since the partial-fraction decomposition returned in a symbolic form.
Mathematica
Remove["Global`*"]; expr = (s^4+8 s^3+16 s^2+9 s+6)/ (s^3+6 s^2+11 s+6); Apart[expr]
|
2 + s +3/(1+s) -4/(2+s) -6/(3+s) |
Matlab
Maple