roots of quintic equation using Matlab

How to find all the roots for (ax^5)+(bx^4)+(cx^3)+(dx^2)+ex+f=0 using Matlab??

 Accepted Answer

You can only get numeric roots of quintics, except in special cases.
roots([a, b, c, d, e, f])

More Answers (1)

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!