partfrac() function returning same expression
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
syms s
% Given expression
F = partfrac((s^2+2*s+1)/(s^3-5*s+3),s)
The output is as follows.
F =
(s^2 + 2*s + 1)/(s^3 - 5*s + 3)
I know syms has a big part to do with it but im not sure exactly what.
0 Commenti
Risposte (1)
Dyuman Joshi
il 31 Gen 2024
Spostato: Steven Lord
il 31 Gen 2024
It gives the same expression as the output because the denominator can not be decomposed with the default factor format i.e. 'rational'.
You can specify a 'full' or 'real' factor mode but the output might not be easy to look at -
syms s
F1 = partfrac((s^2+2*s+1)/(s^3-5*s+3),s,'FactorMode','real')
F2 = partfrac((s^2+2*s+1)/(s^3-5*s+3),s,'FactorMode','full')
vpa(F2)
3 Commenti
Dyuman Joshi
il 31 Gen 2024
I assume you mean to show the output with 4 significant digits -
syms s
F = partfrac((s^2+2*s+1)/(s^3-5*s+3),s,'FactorMode','full')
vpa(F, 4)
Vedere anche
Categorie
Scopri di più su Symbolic Math Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

