Function: math-det-step

math-det-step is a byte-compiled function defined in calc-mtx.el.gz.

Signature

(math-det-step N PROD)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-mtx.el.gz
(defun math-det-step (n prod)
  (if (> n 0)
      (math-det-step (1- n) (math-mul prod (nth n (nth n math-det-lu))))
    prod))