%function which returns nothing and has no parameters function vert() disp('enter the coefficients for ax^2 + bx+c') a = input('enter a') b =input('enter b') c=input('enter c') x = -b/(2*a); y = a*x^2 + b*x+c; x y