Function: math-logunits-quant
math-logunits-quant is a byte-compiled function defined in
calc-units.el.gz.
Signature
(math-logunits-quant VAL REF POWER)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-units.el.gz
(defun math-logunits-quant (val ref power)
(let* ((units (math-simplify (math-extract-units val)))
(lunit (math-simplify (math-extract-logunits units))))
(if (not (eq (car-safe lunit) 'var))
(calc-record-why "*Improper logarithmic unit" lunit)
(let ((runits (math-simplify (math-div units lunit)))
(coeff (math-simplify (math-div val units))))
(math-mul
(if (equal lunit '(var dB var-dB))
(math-mul
ref
(math-conditional-pow
10
(math-div
coeff
(if power 10 20))))
(math-mul
ref
(math-conditional-apply 'calcFunc-exp
(if power
(math-mul 2 coeff)
coeff))))
runits)))))