Roots function is solving eigth order polynomial equation as fifth order.
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Samridh Sharma
il 14 Set 2019
Commentato: Samridh Sharma
il 14 Set 2019
I have an equation : 

Using coeffs(), i get their coefficients, flip them left to right and then use roots() function to get its zeroes.
But, when
, coeffs() function gives coeffs of non-zero terms only,
, coeffs() function gives coeffs of non-zero terms only, that is, for fliplr(coeffs(fn)) = [a,c,e,g,i]
So, when I put this coeffs() solution in roots(), it considers it as fifth order polynomial.
How can I get around this problem?
2 Commenti
Risposta accettata
Steven Lord
il 14 Set 2019
Specify the 'All' option in your call to coeffs to return all the coefficients, even those that are 0.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Numerical Integration and Differential Equations 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!