Function: math-nth-root-integer

math-nth-root-integer is a byte-compiled function defined in calc-math.el.gz.

Signature

(math-nth-root-integer A NRI-N &optional GUESS)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-math.el.gz
(defun math-nth-root-integer (a nri-n &optional guess) ; [I I S]
  (let ((math-nri-n nri-n))
    (math-nth-root-int-iter a (or guess
				  (math-scale-int 1 (/ (+ (math-numdigs a)
							  (1- nri-n))
						       nri-n))))))