Function: calcFunc-prod
calcFunc-prod is an autoloaded and byte-compiled function defined in
calcalg2.el.gz.
Signature
(calcFunc-prod EXPR VAR &optional LOW HIGH STEP)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calcalg2.el.gz
(defun calcFunc-prod (expr var &optional low high step)
(if math-disable-prods (math-reject-arg))
(let* ((res (let* ((calc-internal-prec (+ calc-internal-prec 2)))
(math-prod-rec expr var low high step)))
(math-disable-prods t))
(math-normalize res)))