Function: math-poly-mul

math-poly-mul is an autoloaded and byte-compiled function defined in calc-alg.el.gz.

Signature

(math-poly-mul A B)

Documentation

Multiply two polynomials in list form.

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-alg.el.gz
(defun math-poly-mul (a b)
  "Multiply two polynomials in list form."
  (and a b
       (math-poly-mix b (car a)
		      (math-poly-mul (cdr a) (cons 0 b)) 1)))