Function: math-transpose
math-transpose is an autoloaded and byte-compiled function defined in
calc-vec.el.gz.
Signature
(math-transpose MAT)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-vec.el.gz
(defun math-transpose (mat) ; [Public]
(let ((m nil)
(col (length (nth 1 mat))))
(while (> (setq col (1- col)) 0)
(setq m (cons (math-mat-col mat col) m)))
(cons 'vec m)))