Function: math-check-financial
math-check-financial is a byte-compiled function defined in
calc-fin.el.gz.
Signature
(math-check-financial RATE NUM)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-fin.el.gz
(defun math-check-financial (rate num)
(or (math-objectp rate) math-expand-formulas
(math-reject-arg rate 'numberp))
(and (math-zerop rate)
(math-reject-arg rate 'nonzerop))
(or (math-objectp num) math-expand-formulas
(math-reject-arg num 'numberp)))