% evaluate the quadratic function function y = quadraticf(x); a = -1.5636 b = 2.2624 c = 0.15204 y=a*x.^2 + b*x.^1 + c*x.^0;