TURBO MODE see also: quadratic function http://scratch.mit.edu/projects/3029181 linear function http://scratch.mit.edu/projects/3018920
Polynomial f(x)=an*x^n+an-1*x^n-1+....a2*x^2+a1*x+a0 Polynomial coefficients are stored in the list of ao place1, etc. a0 - 1 item in the list a1 - 2 item in the list a2 - 3 item in the list .............................. an - n+1 item in the list The domain can be established, eg <-5, 5> by introducinglower (eg -5) and upper range (eg 5) You must specify thee degree of the polynomial (n) For quickcalculation of the polynomian used Horner's scheme.