Function: math-maxima-compose-taylor
math-maxima-compose-taylor is a byte-compiled function defined in
calc-lang.el.gz.
Signature
(math-maxima-compose-taylor A)
Documentation
Compose the "taylor" function in Calc's Maxima mode.
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-lang.el.gz
(defun math-maxima-compose-taylor (a)
"Compose the \"taylor\" function in Calc's Maxima mode."
(list 'horiz
"taylor("
(math-compose-expr (nth 1 a) -1)
","
(if (eq (car-safe (nth 2 a)) 'calcFunc-eq)
(concat (math-compose-expr (nth 1 (nth 2 a)) -1)
","
(math-compose-expr (nth 2 (nth 2 a)) -1))
(concat (math-compose-expr (nth 2 a) -1) ",0"))
","
(math-compose-expr (nth 3 a) -1)
")"))