Function: math-row-matrix
math-row-matrix is an autoloaded and byte-compiled function defined in
calc-mtx.el.gz.
Signature
(math-row-matrix A)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-mtx.el.gz
;;; Coerce row vector A to be a matrix. [V V]
(defun math-row-matrix (a)
(if (and (Math-vectorp a)
(not (math-matrixp a)))
(list 'vec a)
a))