Function: calcFunc-powerexpand
calcFunc-powerexpand is an autoloaded and byte-compiled function
defined in calc-alg.el.gz.
Signature
(calcFunc-powerexpand EXPR)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-alg.el.gz
;;; Write out powers (a*b*...)^n as a*b*...*a*b*...
(defun calcFunc-powerexpand (expr)
(math-normalize (math-map-tree 'math-powerexpand expr)))