Function: math-reduce-cols
math-reduce-cols is an autoloaded and byte-compiled function defined
in calc-vec.el.gz.
Signature
(math-reduce-cols F A)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-vec.el.gz
;;; Reduce a function over the columns of matrix A. [V X V] [Public]
(defun math-reduce-cols (f a)
(if (math-matrixp a)
(cons 'vec (math-reduce-cols-col-step f (cdr a) 1 (length (nth 1 a))))
a))