Function: calcFunc-cos
calcFunc-cos is an autoloaded and byte-compiled function defined in
calc-math.el.gz.
Signature
(calcFunc-cos X)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-math.el.gz
(defun calcFunc-cos (x) ; [N N] [Public]
(cond ((and (integerp x)
(if (eq calc-angle-mode 'deg)
(= (% x 90) 0)
(= x 0)))
(aref [1 0 -1 0] (math-mod (/ x 90) 4)))
((Math-scalarp x)
(math-with-extra-prec 2
(math-cos-raw (math-to-radians (math-float x)))))
((eq (car x) 'sdev)
(if (math-constp x)
(math-with-extra-prec 2
(let* ((xx (math-to-radians (math-float (nth 1 x))))
(xs (math-to-radians (math-float (nth 2 x))))
(sc (math-sin-cos-raw xx)))
(math-make-sdev (cdr sc) (math-mul xs (car sc)))))
(math-make-sdev (calcFunc-cos (nth 1 x))
(math-mul (nth 2 x) (calcFunc-sin (nth 1 x))))))
((and (eq (car x) 'intv) (math-intv-constp x))
(math-with-extra-prec 2
(let* ((xx (math-to-radians (math-float x)))
(na (math-floor (math-div (nth 2 xx) (math-pi))))
(nb (math-floor (math-div (nth 3 xx) (math-pi))))
(span (math-sub nb na)))
(if (memq span '(0 1))
(let ((int (math-sort-intv (nth 1 x)
(math-cos-raw (nth 2 xx))
(math-cos-raw (nth 3 xx)))))
(if (eq span 1)
(if (math-evenp na)
(math-make-intv (logior (nth 1 x) 2)
-1
(nth 3 int))
(math-make-intv (logior (nth 1 x) 1)
(nth 2 int)
1))
int))
(list 'intv 3 -1 1)))))
((equal x '(var nan var-nan))
x)
(t (calc-record-why 'scalarp x)
(list 'calcFunc-cos x))))