function y = parab(a,b,c,x) %please put the code here to compute the required result. %don't use 'for' loops... %This was just to see if you had understood the concepts of %functions, parameters, and the 'dot' operator. y = a * x.^2 + b*x + c;