soving polynomial equation with negative powers
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
-HELLO how can I find the zeros of this equation : ax^(-1)+bx^(-2)+cx^(-3)+...=0
0 commentaires
Réponse acceptée
Walter Roberson
le 4 Juil 2013
If the last term is Z * x^(-P), then multiply the equation by x^P, transforming it into
a*x^(P-1) + b*x^(P-2) + c*x^(P-3) + .... Z = 0
then you can use roots()
If you think about this for a second, you can see that you can skip the roots() step if your coefficients are arranged in the right order.
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Polynomials dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!