Function: math-get-diag-step
math-get-diag-step is a byte-compiled function defined in
calc-vec.el.gz.
Signature
(math-get-diag-step ROW N)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-vec.el.gz
(defun math-get-diag-step (row n)
(and row
(cons (nth n (car row))
(math-get-diag-step (cdr row) (1+ n)))))