Hi
i want to find the partial fraction expansion for the function
f(x) = (8x^2+37x+32)/((x+1)(x+2)(x+4))
I want to find it using partfrac command
when I try partfrac((8*(x^2) + 37*x + 32) / ((x + 1) * (x+2) * (x+4)))
I get an error: Undefined function or variable 'x'.
How can I do it?

 Akzeptierte Antwort

Walter Roberson
Walter Roberson am 13 Feb. 2013

0 Stimmen

syms x
partfrac((8*(x^2) + 37*x + 32) / ((x + 1) * (x+2) * (x+4)))

5 Kommentare

Mohammad
Mohammad am 13 Feb. 2013
I tried that already but I got an error: Undefined function 'partfrac' for input arguments of type 'sym' :(
feval(symengine, 'partfrac', (8*(x^2) + 37*x + 32) / ((x + 1) * (x+2) * (x+4)))
Mohammad
Mohammad am 13 Feb. 2013
perfect! Thanks a lot :)
Not able to find Partfracs for this function. transfer =
2 s + 20
----------------------------------
s^5 + 3 s^4 + 6 s^3 + 12 s^2 + 8 s
Please help.
Hariharan....I suggest the following code:
syms s;
laplace(ilaplace((2*s+20)/(s^5+3*s^4+6*s^3+12*s^2+8*s)))
ans = 

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Carlos Guerrero García
Carlos Guerrero García am 2 Dez. 2022

0 Stimmen

I suggest the following code:
syms s;
laplace(ilaplace((8*s^2+37*s+32)/((s+1)*(s+2)*(s+4))))
ans = 

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by