How to find the root of a polynomial

1 visualización (últimos 30 días)
Morne' Breitenbach
Morne' Breitenbach el 5 de Jun. de 2020
Comentada: Star Strider el 5 de Jun. de 2020
I have this polynomial: P(z) = z.^9 + z.^8 - z.^7 + z.^6 - z.^5 + z + 1
And I'd like to find the roots for it.
How would I go about doing that?

Respuesta aceptada

Star Strider
Star Strider el 5 de Jun. de 2020
Easiest:
syms z
P(z) = z.^9 + z.^8 - z.^7 + z.^6 - z.^5 + z + 1;
rts = vpasolve(P)
Otherwise:
rts = roots([1 1 -1 1 -1 0 0 0 1 1]);
With the same essential result.
  2 comentarios
Morne' Breitenbach
Morne' Breitenbach el 5 de Jun. de 2020
Awesome, Thanks!
Star Strider
Star Strider el 5 de Jun. de 2020
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Polynomials en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by