% Numerical Mathematics and Computing, Fifth Edition % Ward Cheney & David Kincaid % Brooks/Cole Publ. Co. % (c) 2003 % % file: poly_roots2.m % % finding roots of the polynomial x^5 + x^3 +3 p = [1 0 1 0 0 3] r = roots(p)