]> code.delx.au - gnu-emacs/blobdiff - lisp/calc/calc-stat.el
(math-eqn-special-funcs): Add functions to list.
[gnu-emacs] / lisp / calc / calc-stat.el
index dc37922cccc15409faa9a47c4abd0b7030b35b36..9fdd634027e59879da7734759b2a7d04d53b1443 100644 (file)
@@ -1,6 +1,9 @@
-;; Calculator for GNU Emacs, part II [calc-stat.el]
+;;; calc-stat.el --- statistical functions for Calc
+
 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001 Free Software Foundation, Inc.
-;; Written by Dave Gillespie, daveg@synaptics.com.
+
+;; Author: David Gillespie <daveg@synaptics.com>
+;; Maintainer: Jay Belanger <belanger@truman.edu>
 
 ;; This file is part of GNU Emacs.
 
 ;; file named COPYING.  Among other things, the copyright notice
 ;; and this notice must be preserved on all copies.
 
+;;; Commentary:
 
+;;; Code:
 
 ;; This file is autoloaded from calc-ext.el.
-(require 'calc-ext)
 
+(require 'calc-ext)
 (require 'calc-macs)
 
-(defun calc-Need-calc-stat () nil)
-
-
 ;;; Statistical operations on vectors.
 
 (defun calc-vector-count (arg)
                 (math-div (math-mul suminvsqrwts (1- len)) len))
             (if pop len (1- len)))))))))
 
+(provide 'calc-stat)
+
+;;; arch-tag: 423858e9-8513-489c-9f35-710cd9d9c307
 ;;; calc-stat.el ends here