Averages/Root mean square: Difference between revisions

m
fix markup
m (Automated syntax highlighting fixup (second round - minor fixes))
m (fix markup)
Line 689:
 
=={{header|Emacs Lisp}}==
<Langsyntaxhighlight lang="lisp">(defun rms (nums)
(sqrt (/ (apply '+ (mapcar (lambda (x) (* x x)) nums))
(float (length nums)))))
10,327

edits