Function: math-mul-float

math-mul-float is an autoloaded and byte-compiled function defined in calc-arith.el.gz.

Signature

(math-mul-float A B)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-arith.el.gz
;;; Fast function to multiply floating-point numbers.
(defun math-mul-float (a b)   ; [F F F]
  (math-make-float (math-mul (nth 1 a) (nth 1 b))
		   (+ (nth 2 a) (nth 2 b))))