Function: math-maxima-parse-taylor
math-maxima-parse-taylor is a byte-compiled function defined in
calc-lang.el.gz.
Signature
(math-maxima-parse-taylor F VAL)
Documentation
Read in the arguments to "taylor" in Calc's Maxima mode.
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-lang.el.gz
(defun math-maxima-parse-taylor (_f _val)
"Read in the arguments to \"taylor\" in Calc's Maxima mode."
(let ((args (math-read-expr-list)))
(math-read-token)
(list 'calcFunc-taylor
(nth 0 args)
(list 'calcFunc-eq
(nth 1 args)
(nth 2 args))
(nth 3 args))))