Finds the roots of a quadratic polynomial.
root=quadsolver(a,b,c)
Coefficient of x^2
Coefficient of x^1
Coefficient of x^0
A matrix containing the two roots of the equation
Returns the roots of a quadratic polynomial.
a=quadsolver(1,2,1); disp(a) b=quadsolver(1,1,1); disp(b)