Function: math-compose-eqn-matrix
math-compose-eqn-matrix is a byte-compiled function defined in
calc-lang.el.gz.
Signature
(math-compose-eqn-matrix A)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-lang.el.gz
(defun math-compose-eqn-matrix (a)
(if a
(cons
(cond ((eq calc-matrix-just 'right) "rcol ")
((eq calc-matrix-just 'center) "ccol ")
(t "lcol "))
(cons
(list 'break math-compose-level)
(cons
"{ "
(cons
(let ((math-compose-level (1+ math-compose-level)))
(math-compose-vector (cdr (car a)) " above " 1000))
(cons
" } "
(math-compose-eqn-matrix (cdr a)))))))
nil))