Function Description ******************** Name: QUADRATIC Function: f(x) = a*x*x + b*x + c Parameters: a b c Notes ***** Polynomial Fit to a quadratic function This function converges with almost any starting parameters. C-code for the function *********************** answer = a*x*x + b*x + c;