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