LeastSquareFitEvaluate.txt Given an x, and the coefficients ck k=0..r y := sum(ck x^k) k=0..r (in theory) In practice, Horner's rule is used to evaluate the polynomial For example: y := c0+(c1+(c2+c3*x)*x)*x for r=3