Function: calcFunc-rms

calcFunc-rms is an autoloaded and byte-compiled function defined in calc-stat.el.gz.

Signature

(calcFunc-rms A)

Documentation

Return the root-mean-square of the vector A.

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-stat.el.gz
(defun calcFunc-rms (a)
  "Return the root-mean-square of the vector A."
  (math-sqrt
   (calcFunc-vmean
    (calcFunc-map '(var abssqr var-abssqr) a))))