MATLAB: Roots of quintic equation using Matlab

quintic

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

Best Answer

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