polynomial definition

how to input polynomial in the form...
(x-a)^n+(x-a)^(n-1).....+(x-a)+c=0

1 commentaire

John D'Errico
John D'Errico le 21 Mar 2011
"Input" a polynomial? What will you do with it? Knowing your goal here is surely the important thing.

Connectez-vous pour commenter.

Réponses (1)

Walter Roberson
Walter Roberson le 21 Mar 2011

0 votes

syms x a c MyPoly = (x-a)^n + (x-a)^(n-1)... +(x-a)+c;
You could follow that with
solve(MyPoly,x)

Catégories

En savoir plus sur Polynomials dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by