sequence cleanup
[CommonLispStat.git] / lspackages.lsp
blob29864b615c7ce0ded4f015baab9f09570e3d09e3
1 ;;; -*- mode: lisp -*-
2 ;;; Copyright (c) 2005--2007, by A.J. Rossini <blindglobe@gmail.com>
3 ;;; See COPYRIGHT file for any additional restrictions (BSD license).
4 ;;; Since 1991, ANSI was finally finished. Edited for ANSI Common Lisp.
6 ;;;; lspackages -- Lisp-Stat package specifications
7 ;;;;
8 ;;;; Copyright (c) 1991, by Luke Tierney. Permission is granted for
9 ;;;; unrestricted use.
11 ;;;
12 ;;; LISP-STAT-OBJECT-SYSTEM Package
13 ;;; (moved to lsobjects)
15 ;;; LISP-STAT-BASICS Package
16 ;;; (moved to lsbasics)
18 ;;;
19 ;;; LISP-STAT Package
20 ;;;
22 (defpackage :lisp-stat
23 (:nicknames :ls :stats)
24 (:use ;; :common-lisp
25 ;; :lisp-stat-object-system
26 :lisp-stat-float
27 :lisp-stat-math
28 :lisp-stat-basics)
29 (:shadowing-import-from :lisp-stat-object-system slot-value call-next-method)
31 ;; ;; statistics.lsp
33 ;; |base-lowess|
35 ;; ;; maximize.lsp
36 ;; new-minfo-internals minfo-maximize
38 ;; )
40 ;; (:shadow
42 ;; ;; lsmath.lsp
44 ;; expt + - * / ** mod rem abs 1+ 1- log exp sqrt sin cos tan
45 ;; asin acos atan sinh cosh tanh asinh acosh atanh float random
46 ;; truncate floor ceiling round minusp zerop plusp evenp oddp
47 ;; < <= = /= >= > complex conjugate realpart imagpart phase
48 ;; min max logand logior logxor lognot ffloor fceiling
49 ;; ftruncate fround signum cis
51 ;; )
53 (:export
55 ;; lsmath.lsp
56 ^ ** expt + - * / mod rem pmin pmax abs 1+ 1- log exp sqrt sin cos
57 tan asin acos atan sinh cosh tanh asinh acosh atanh float random
58 truncate floor ceiling round minusp zerop plusp evenp oddp < <= =
59 /= >= > complex conjugate realpart imagpart phase min max
60 logand logior logxor lognot ffloor fceiling ftruncate fround
61 signum cis
63 ;; statistics.lsp
64 open-file-dialog read-data-file read-data-columns load-data
65 load-example *variables* *ask-on-redefine* def variables savevar
66 undef standard-deviation quantile median interquartile-range
67 fivnum covariance-matrix difference rseq matrix print-matrix solve
68 backsolve eigenvalues eigenvectors accumulate cumsum combine
69 lowess
71 ;; regression.lsp
72 regression-model regression-model-proto x y intercept sweep-matrix
73 basis weights included total-sum-of-squares residual-sum-of-squares
74 predictor-names response-name case-labels
76 ;; nonlin.lsp
77 nreg-model nreg-model-proto mean-function theta-hat epsilon
78 count-limit verbose
80 ;; maximize.lsp
81 newtonmax nelmeadmax
83 ;; bayes.lsp
84 bayes-model bayes-model-proto bayes-internals
89 ;;; Lisp-stat-user package
91 (defpackage :lisp-stat-user
92 (:use :common-lisp
93 :lisp-stat))
95 (in-package :lisp-stat-user)