Function: math-mat-less-row

math-mat-less-row is a byte-compiled function defined in calc-vec.el.gz.

Signature

(math-mat-less-row MAT N)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-vec.el.gz
;;; Remove the Nth row from a matrix.
(defun math-mat-less-row (mat n)
  (if (<= n 0)
      (cdr mat)
    (cons (car mat)
	  (math-mat-less-row (cdr mat) (1- n)))))