Function: math-from-radians-2
math-from-radians-2 is an autoloaded and byte-compiled function
defined in calc-math.el.gz.
Signature
(math-from-radians-2 A &optional FORCE-SYMBOLIC)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-math.el.gz
(defun math-from-radians-2 (a &optional force-symbolic) ; [N N]
(cond ((and (not math-simplifying-units)
(memq calc-angle-mode '(deg hms)))
(if (or calc-symbolic-mode force-symbolic)
(math-div (math-mul 180 a) '(var pi var-pi))
(math-div a (math-pi-over-180))))
(t a)))