Function: math-div
math-div is a byte-compiled function defined in calc.el.gz.
Signature
(math-div A B)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc.el.gz
;;; Compute the quotient of A and B. [O O N] [Public]
(defun math-div (a b)
(or
(and (Math-zerop b)
(require 'calc-ext)
(math-div-by-zero a b))
(and (Math-zerop a) (not (eq (car-safe b) 'mod))
(if (Math-scalarp b)
(if (and (math-floatp b) (Math-ratp a)) (math-float a) a)
(require 'calc-ext)
(math-div-zero a b)))
(and (Math-objvecp a) (Math-objvecp b)
(or
(and (Math-integerp a) (Math-integerp b)
(let ((q (math-idivmod a b)))
(if (eq (cdr q) 0)
(car q)
(if calc-prefer-frac
(progn
(require 'calc-ext)
(math-make-frac a b))
(math-div-float (math-make-float a 0)
(math-make-float b 0))))))
(and (Math-ratp a) (Math-ratp b)
(require 'calc-ext)
(calc-div-fractions a b))
(and (Math-realp a) (Math-realp b)
(progn
(or (and (consp a) (eq (car a) 'float))
(setq a (math-float a)))
(or (and (consp b) (eq (car b) 'float))
(setq b (math-float b)))
(math-div-float a b)))
(and (require 'calc-ext)
(math-div-objects-fancy a b))))
(and (require 'calc-ext)
(math-div-symb-fancy a b))))