Update of /project/cl-gsl/cvsroot/cl-gsl/doc In directory common-lisp.net:/tmp/cvs-serv5983
Modified Files: poly.tex Log Message: Fix 's.
Date: Thu Mar 24 04:47:26 2005 Author: edenny
Index: cl-gsl/doc/poly.tex diff -u cl-gsl/doc/poly.tex:1.1 cl-gsl/doc/poly.tex:1.2 --- cl-gsl/doc/poly.tex:1.1 Wed Mar 23 04:00:20 2005 +++ cl-gsl/doc/poly.tex Thu Mar 24 04:47:25 2005 @@ -34,15 +34,16 @@
This function evaluates the polynomial (c_0 + c_1 x + c_2 x^2 + \dots + c_{len-1} x^{len-1}) -using Horner's method for stability. \texttt{coeff-list} is a list +using Horner's method for stability. \texttt{coeff-list} is a list of the coefficients.
\subsection*{6.2 Divided Difference Representation of Polynomials}
-The functions described here manipulate polynomials stored in Newton's +The functions described here manipulate polynomials stored in Newton's divided-difference representation. The use of divided-differences is described in Abramowitz & Stegun sections 25.1.4 and 25.2.26. +
\func{dd-init}{ x-list y-list => dd-list, status}