Function: math-reduce-cols-row-step

math-reduce-cols-row-step is a byte-compiled function defined in calc-vec.el.gz.

Signature

(math-reduce-cols-row-step F TOT COL A)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-vec.el.gz
(defun math-reduce-cols-row-step (f tot col a)
  (if a
      (math-reduce-cols-row-step f
				 (funcall f tot (nth col (car a)))
				 col
				 (cdr a))
    tot))