Function: math-nth-root-float-iter
math-nth-root-float-iter is a byte-compiled function defined in
calc-math.el.gz.
Signature
(math-nth-root-float-iter A GUESS)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-math.el.gz
(defun math-nth-root-float-iter (a guess)
(math-working "root" guess)
(let ((g2 (math-div-float (math-add-float (math-mul math-nrf-nfm1 guess)
(math-div-float
a (math-ipow guess (1- math-nrf-n))))
math-nrf-nf)))
(if (math-nearly-equal-float g2 guess)
g2
(math-nth-root-float-iter a g2))))