feval(symengine, 'partfrac' command error
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
how i find the partial fraction of 4/ (((x - 7)^2 + 4^2 )* (x^2+14x + 65))
I used the following command but it gave a error.
feval(symengine, 'partfrac', 4/ (((x - 7)^2 + 4^2 )* (x^2+14x + 65)))
feval(symengine, 'partfrac', 4/ (((x - 7)^2 + 4^2 )* (x^2+14x + 65)))
|
Error: Unexpected MATLAB expression.
1 Commento
yassine
il 16 Mar 2017
(x/455 + 2/65)/(x^2 + 14*x + 65) - (x/455 - 2/65)/(x^2 - 14*x + 65)
multplication * omise 14*x
Risposta accettata
Thomas
il 18 Feb 2014
You forgot the * between 14 and x
feval(symengine, 'partfrac', 4/ (((x - 7)^2 + 4^2 )* (x^2+14*x + 65)))
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Symbolic Math Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!