find the roots of the polynomial 270 – 12x + 4x 2 + 2x 3 in matlab
main.m
coefficients = [2, 4, -12, 270]; % Coefficients of the polynomial in descending order of powersrootsOfPolynomial = roots(coefficients); % Finding the roots of the polynomialdisp(rootsOfPolynomial); % Displaying the roots