Function: math-col-matrix

math-col-matrix is an autoloaded and byte-compiled function defined in calc-mtx.el.gz.

Signature

(math-col-matrix A)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-mtx.el.gz
;;; Coerce column vector A to be a matrix.  [V V]
(defun math-col-matrix (a)
  (if (and (Math-vectorp a)
	   (not (math-matrixp a)))
      (cons 'vec (mapcar (lambda (x) (list 'vec x)) (cdr a)))
    a))