Function: math-poly-eval
math-poly-eval is a byte-compiled function defined in
calc-funcs.el.gz.
Signature
(math-poly-eval X COEFS)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-funcs.el.gz
(defun math-poly-eval (x coefs)
(let ((accum (car coefs)))
(while (setq coefs (cdr coefs))
(setq accum (math-add (car coefs) (math-mul accum x))))
accum))