Function: math-conditional-pow
math-conditional-pow is a byte-compiled function defined in
calc-units.el.gz.
Signature
(math-conditional-pow A B)
Documentation
Evaluate a^b unless in symbolic mode.
In symbolic mode, return the list (^ a b).
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-units.el.gz
(defun math-conditional-pow (a b)
"Evaluate a^b unless in symbolic mode.
In symbolic mode, return the list (^ a b)."
(if calc-symbolic-mode
(list '^ a b)
(math-pow a b)))