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