Function: math-sqrt-float
math-sqrt-float is an autoloaded and byte-compiled function defined in
calc-math.el.gz.
Signature
(math-sqrt-float A &optional GUESS)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-math.el.gz
(defun math-sqrt-float (a &optional guess) ; [F F F]
(if calc-symbolic-mode
(signal 'inexact-result nil)
(math-with-extra-prec 1 (math-sqrt-raw a guess))))