Function: calc-cot
calc-cot is an autoloaded, interactive and byte-compiled function
defined in calc-math.el.gz.
Signature
(calc-cot ARG)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-math.el.gz
(defun calc-cot (arg)
(interactive "P")
(calc-slow-wrapper
(if (calc-is-hyperbolic)
(calc-unary-op "coth" 'calcFunc-coth arg)
(calc-unary-op "cot" 'calcFunc-cot arg))))