annotate doc/interpreter/stats.txi @ 10846:a4f482e66b65

Grammarcheck more of the documentation. Use @noindent macro appropriately. Limit line length to 80 characters.
author Rik <octave@nomad.inbox5.com>
date Sun, 01 Aug 2010 20:22:17 -0700
parents 923c7cb7f13f
children 757efa1d7e2a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7018
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
1 @c Copyright (C) 1996, 1997, 1999, 2000, 2002, 2004, 2005, 2006,
8920
eb63fbe60fab update copyright notices
John W. Eaton <jwe@octave.org>
parents: 8828
diff changeset
2 @c 2007, 2008, 2009 John W. Eaton
7018
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
3 @c
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
4 @c This file is part of Octave.
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
5 @c
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
6 @c Octave is free software; you can redistribute it and/or modify it
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
7 @c under the terms of the GNU General Public License as published by the
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
8 @c Free Software Foundation; either version 3 of the License, or (at
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
9 @c your option) any later version.
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
10 @c
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
11 @c Octave is distributed in the hope that it will be useful, but WITHOUT
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
12 @c ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
13 @c FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
14 @c for more details.
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
15 @c
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
16 @c You should have received a copy of the GNU General Public License
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
17 @c along with Octave; see the file COPYING. If not, see
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6939
diff changeset
18 @c <http://www.gnu.org/licenses/>.
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
19
4167
aae05d51353c [project @ 2002-11-12 02:52:50 by jwe]
jwe
parents: 3456
diff changeset
20 @node Statistics
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
21 @chapter Statistics
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
22
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
23 Octave has support for various statistical methods. This includes
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
24 basic descriptive statistics, statistical tests, random number generation,
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
25 and much more.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
26
10846
a4f482e66b65 Grammarcheck more of the documentation.
Rik <octave@nomad.inbox5.com>
parents: 9209
diff changeset
27 The functions that analyze data all assume that multi-dimensional data
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
28 is arranged in a matrix where each row is an observation, and each
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
29 column is a variable. So, the matrix defined by
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
30
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
31 @example
9069
634274aaa183 Cleanup documentation for stats.texi
Rik <rdrider0-list@yahoo.com>
parents: 8932
diff changeset
32 @group
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
33 a = [ 0.9, 0.7;
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
34 0.1, 0.1;
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
35 0.5, 0.4 ];
9069
634274aaa183 Cleanup documentation for stats.texi
Rik <rdrider0-list@yahoo.com>
parents: 8932
diff changeset
36 @end group
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
37 @end example
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
38
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
39 @noindent
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
40 contains three observations from a two-dimensional distribution.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
41 While this is the default data arrangement, most functions support
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
42 different arrangements.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
43
8828
8463d1a2e544 Doc fixes.
Brian Gough <bjg@network-theory.co.uk>
parents: 7643
diff changeset
44 It should be noted that the statistics functions don't test for data
6939
46d1ad37d943 [project @ 2007-10-01 16:12:20 by jwe]
jwe
parents: 6888
diff changeset
45 containing NaN, NA, or Inf. Such values need to be handled explicitly.
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
46
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
47 @menu
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
48 * Descriptive Statistics::
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
49 * Basic Statistical Functions::
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
50 * Statistical Plots::
3454
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
51 * Tests::
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
52 * Models::
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
53 * Distributions::
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
54 * Random Number Generation::
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
55 @end menu
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
56
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
57 @node Descriptive Statistics
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
58 @section Descriptive Statistics
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
59
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
60 Octave can compute various statistics such as the moments of a data set.
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
61
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
62 @DOCSTRING(mean)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
63
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
64 @DOCSTRING(median)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
65
7643
0220da981c2a Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents: 7081
diff changeset
66 @DOCSTRING(quantile)
0220da981c2a Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents: 7081
diff changeset
67
0220da981c2a Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents: 7081
diff changeset
68 @DOCSTRING(prctile)
0220da981c2a Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents: 7081
diff changeset
69
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
70 @DOCSTRING(meansq)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
71
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
72 @DOCSTRING(std)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
73
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
74 @DOCSTRING(var)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
75
6863
3c64128e621c [project @ 2007-09-05 07:52:48 by dbateman]
dbateman
parents: 6778
diff changeset
76 @DOCSTRING(mode)
3c64128e621c [project @ 2007-09-05 07:52:48 by dbateman]
dbateman
parents: 6778
diff changeset
77
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
78 @DOCSTRING(cov)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
79
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
80 @DOCSTRING(cor)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
81
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
82 @DOCSTRING(corrcoef)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
83
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
84 @DOCSTRING(kurtosis)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
85
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
86 @DOCSTRING(skewness)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
87
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
88 @DOCSTRING(statistics)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
89
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
90 @DOCSTRING(moment)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
91
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
92 @node Basic Statistical Functions
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
93 @section Basic Statistical Functions
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
94
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
95 Octave also supports various helpful statistical functions.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
96
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
97 @DOCSTRING(mahalanobis)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
98
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
99 @DOCSTRING(center)
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
100
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
101 @DOCSTRING(studentize)
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
102
6550
1b7a6061a05d [project @ 2007-04-20 07:40:26 by jwe]
jwe
parents: 6502
diff changeset
103 @DOCSTRING(nchoosek)
1b7a6061a05d [project @ 2007-04-20 07:40:26 by jwe]
jwe
parents: 6502
diff changeset
104
8932
2d0f8692a82e Add the 'histc' function
Soren Hauberg <hauberg@gmail.com>
parents: 8920
diff changeset
105 @DOCSTRING(histc)
2d0f8692a82e Add the 'histc' function
Soren Hauberg <hauberg@gmail.com>
parents: 8920
diff changeset
106
6550
1b7a6061a05d [project @ 2007-04-20 07:40:26 by jwe]
jwe
parents: 6502
diff changeset
107 @DOCSTRING(perms)
1b7a6061a05d [project @ 2007-04-20 07:40:26 by jwe]
jwe
parents: 6502
diff changeset
108
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
109 @DOCSTRING(values)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
110
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
111 @DOCSTRING(table)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
112
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
113 @DOCSTRING(spearman)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
114
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
115 @DOCSTRING(run_count)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
116
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
117 @DOCSTRING(ranks)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
118
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
119 @DOCSTRING(range)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
120
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
121 @DOCSTRING(probit)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
122
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
123 @DOCSTRING(logit)
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
124
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
125 @DOCSTRING(cloglog)
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
126
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
127 @DOCSTRING(kendall)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
128
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
129 @DOCSTRING(iqr)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
130
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
131 @DOCSTRING(cut)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
132
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
133 @node Statistical Plots
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
134 @section Statistical Plots
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
135
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
136 @c Should hist be moved to here, or perhaps the qqplot and ppplot
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
137 @c functions should be moved to the Plotting Chapter?
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
138
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
139 Octave can create Quantile Plots (QQ-Plots), and Probability Plots
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
140 (PP-Plots). These are simple graphical tests for determining if a
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
141 data set comes from a certain distribution.
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
142
8828
8463d1a2e544 Doc fixes.
Brian Gough <bjg@network-theory.co.uk>
parents: 7643
diff changeset
143 Note that Octave can also show histograms of data
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
144 using the @code{hist} function as described in
6888
b3d286e8a243 [project @ 2007-09-12 06:40:58 by jwe]
jwe
parents: 6863
diff changeset
145 @ref{Two-Dimensional Plots}.
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
146
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
147 @DOCSTRING(qqplot)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
148
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
149 @DOCSTRING(ppplot)
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
150
4167
aae05d51353c [project @ 2002-11-12 02:52:50 by jwe]
jwe
parents: 3456
diff changeset
151 @node Tests
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
152 @section Tests
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
153
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
154 Octave can perform several different statistical tests. The following
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
155 table summarizes the available tests.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
156
7081
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
157 @tex
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
158 \vskip 6pt
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
159 {\hbox to \hsize {\hfill\vbox{\offinterlineskip \tabskip=0pt
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
160 \halign{
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
161 \vrule height2.0ex depth1.ex width 0.6pt #\tabskip=0.3em &
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
162 # \hfil & \vrule # & # \hfil & # \vrule width 0.6pt \tabskip=0pt\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
163 \noalign{\hrule height 0.6pt}
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
164 & @strong{Hypothesis} && {\bf Test Functions} &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
165 \noalign{\hrule}
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
166 & Equal mean values && anova, hotelling\_test2, t\_test\_2, &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
167 & && welch\_test, wilcoxon\_test, z\_test\_2 &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
168 & Equal medians && kruskal\_wallis\_test, sign\_test &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
169 & Equal variances && bartlett\_test, manova, var\_test &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
170 & Equal distributions && chisquare\_test\_homogeneity, &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
171 & && kolmogorov\_smirnov\_test\_2, u\_test &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
172 & Equal marginal frequencies && mcnemar\_test &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
173 & Equal success probabilities && prop\_test\_2 &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
174 & Independent observations && chisquare\_test\_independence, &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
175 & && run\_test &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
176 & Uncorrelated observations && cor\_test &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
177 & Given mean value && hotelling\_test, t\_test, z\_test &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
178 & Observations from distribution && kolmogorov\_smirnov\_test &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
179 & Regression && f\_test\_regression, t\_test\_regression &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
180 \noalign{\hrule height 0.6pt}
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
181 }}\hfill}}
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
182 @end tex
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
183 @ifnottex
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
184 @multitable @columnfractions .4 .5
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
185 @item @strong{Hypothesis}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
186 @tab @strong{Test Functions}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
187 @item Equal mean values
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
188 @tab @code{anova}, @code{hotelling_test2}, @code{t_test_2},
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
189 @code{welch_test}, @code{wilcoxon_test}, @code{z_test_2}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
190 @item Equal medians
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
191 @tab @code{kruskal_wallis_test}, @code{sign_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
192 @item Equal variances
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
193 @tab @code{bartlett_test}, @code{manova}, @code{var_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
194 @item Equal distributions
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
195 @tab @code{chisquare_test_homogeneity}, @code{kolmogorov_smirnov_test_2},
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
196 @code{u_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
197 @item Equal marginal frequencies
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
198 @tab @code{mcnemar_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
199 @item Equal success probabilities
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
200 @tab @code{prop_test_2}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
201 @item Independent observations
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
202 @tab @code{chisquare_test_independence}, @code{run_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
203 @item Uncorrelated observations
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
204 @tab @code{cor_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
205 @item Given mean value
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
206 @tab @code{hotelling_test}, @code{t_test}, @code{z_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
207 @item Observations from given distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
208 @tab @code{kolmogorov_smirnov_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
209 @item Regression
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
210 @tab @code{f_test_regression}, @code{t_test_regression}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
211 @end multitable
7081
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
212 @end ifnottex
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
213
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
214 The tests return a p-value that describes the outcome of the test.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
215 Assuming that the test hypothesis is true, the p-value is the probability
6939
46d1ad37d943 [project @ 2007-10-01 16:12:20 by jwe]
jwe
parents: 6888
diff changeset
216 of obtaining a worse result than the observed one. So large p-values
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
217 corresponds to a successful test. Usually a test hypothesis is accepted
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
218 if the p-value exceeds @math{0.05}.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
219
3454
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
220 @DOCSTRING(anova)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
221
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
222 @DOCSTRING(bartlett_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
223
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
224 @DOCSTRING(chisquare_test_homogeneity)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
225
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
226 @DOCSTRING(chisquare_test_independence)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
227
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
228 @DOCSTRING(cor_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
229
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
230 @DOCSTRING(f_test_regression)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
231
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
232 @DOCSTRING(hotelling_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
233
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
234 @DOCSTRING(hotelling_test_2)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
235
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
236 @DOCSTRING(kolmogorov_smirnov_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
237
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
238 @DOCSTRING(kolmogorov_smirnov_test_2)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
239
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
240 @DOCSTRING(kruskal_wallis_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
241
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
242 @DOCSTRING(manova)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
243
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
244 @DOCSTRING(mcnemar_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
245
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
246 @DOCSTRING(prop_test_2)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
247
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
248 @DOCSTRING(run_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
249
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
250 @DOCSTRING(sign_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
251
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
252 @DOCSTRING(t_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
253
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
254 @DOCSTRING(t_test_2)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
255
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
256 @DOCSTRING(t_test_regression)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
257
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
258 @DOCSTRING(u_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
259
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
260 @DOCSTRING(var_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
261
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
262 @DOCSTRING(welch_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
263
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
264 @DOCSTRING(wilcoxon_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
265
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
266 @DOCSTRING(z_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
267
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
268 @DOCSTRING(z_test_2)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
269
4167
aae05d51353c [project @ 2002-11-12 02:52:50 by jwe]
jwe
parents: 3456
diff changeset
270 @node Models
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
271 @section Models
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
272
3454
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
273 @DOCSTRING(logistic_regression)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
274
4167
aae05d51353c [project @ 2002-11-12 02:52:50 by jwe]
jwe
parents: 3456
diff changeset
275 @node Distributions
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
276 @section Distributions
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
277
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
278 Octave has functions for computing the Probability Density Function
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
279 (PDF), the Cumulative Distribution function (CDF), and the quantile
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
280 (the inverse of the CDF) of a large number of distributions.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
281
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
282 The following table summarizes the supported distributions (in
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
283 alphabetical order).
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
284
7081
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
285 @c Do the table explicitly in TeX if possible to get a better layout.
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
286 @tex
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
287 \vskip 6pt
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
288 {\hbox to \hsize {\hfill\vbox{\offinterlineskip \tabskip=0pt
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
289 \halign{
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
290 \vrule height2.0ex depth1.ex width 0.6pt #\tabskip=0.3em &
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
291 # \hfil & \vrule # & # \hfil & \vrule # & # \hfil & \vrule # & # \hfil &
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
292 # \vrule width 0.6pt \tabskip=0pt\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
293 \noalign{\hrule height 0.6pt}
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
294 & {\bf Distribution} && {\bf PDF} && {\bf CDF} && {\bf Quantile}&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
295 \noalign{\hrule}
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
296 &Beta && betapdf && betacdf && betainv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
297 &Binomial && binopdf && binocdf && binoinv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
298 &Cauchy && cauchy\_pdf && cauchy\_cdf && cauchy\_inv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
299 &Chi-Square && chi2pdf && chi2cdf && chi2inv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
300 &Univariate Discrete && discrete\_pdf && discrete\_cdf && discrete\_inv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
301 &Empirical && empirical\_pdf && empirical\_cdf && empirical\_inv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
302 &Exponential && exppdf && expcdf && expinv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
303 &F && fpdf && fcdf && finv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
304 &Gamma && gampdf && gamcdf && gaminv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
305 &Geometric && geopdf && geocdf && geoinv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
306 &Hypergeometric && hygepdf && hygecdf && hygeinv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
307 &Kolmogorov Smirnov && {\it Not Available} && kolmogorov\_&& {\it Not Available}&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
308 & && && smirnov\_cdf &&&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
309 &Laplace && laplace\_pdf && laplace\_cdf && laplace\_inv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
310 &Logistic && logistic\_pdf && logistic\_cdf && logistic\_inv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
311 &Log-Normal && lognpdf && logncdf && logninv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
312 &Pascal && nbinpdf && nbincdf && nbininv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
313 &Univariate Normal && normpdf && normcdf && norminv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
314 &Poisson && poisspdf && poisscdf && poissinv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
315 &t (Student) && tpdf && tcdf && tinv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
316 &Univariate Discrete && unidpdf && unidcdf && unidinv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
317 &Uniform && unifpdf && unifcdf && unifinv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
318 &Weibull && wblpdf && wblcdf && wblinv&\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
319 \noalign{\hrule height 0.6pt}
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
320 }}\hfill}}
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
321 @end tex
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
322 @ifnottex
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
323 @multitable @columnfractions .31 .23 .23 .23
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
324 @item @strong{Distribution}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
325 @tab @strong{PDF}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
326 @tab @strong{CDF}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
327 @tab @strong{Quantile}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
328 @item Beta Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
329 @tab @code{betapdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
330 @tab @code{betacdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
331 @tab @code{betainv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
332 @item Binomial Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
333 @tab @code{binopdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
334 @tab @code{binocdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
335 @tab @code{binoinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
336 @item Cauchy Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
337 @tab @code{cauchy_pdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
338 @tab @code{cauchy_cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
339 @tab @code{cauchy_inv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
340 @item Chi-Square Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
341 @tab @code{chi2pdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
342 @tab @code{chi2cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
343 @tab @code{chi2inv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
344 @item Univariate Discrete Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
345 @tab @code{discrete_pdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
346 @tab @code{discrete_cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
347 @tab @code{discrete_inv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
348 @item Empirical Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
349 @tab @code{empirical_pdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
350 @tab @code{empirical_cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
351 @tab @code{empirical_inv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
352 @item Exponential Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
353 @tab @code{exppdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
354 @tab @code{expcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
355 @tab @code{expinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
356 @item F Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
357 @tab @code{fpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
358 @tab @code{fcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
359 @tab @code{finv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
360 @item Gamma Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
361 @tab @code{gampdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
362 @tab @code{gamcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
363 @tab @code{gaminv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
364 @item Geometric Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
365 @tab @code{geopdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
366 @tab @code{geocdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
367 @tab @code{geoinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
368 @item Hypergeometric Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
369 @tab @code{hygepdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
370 @tab @code{hygecdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
371 @tab @code{hygeinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
372 @item Kolmogorov Smirnov Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
373 @tab @emph{Not Available}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
374 @tab @code{kolmogorov_smirnov_cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
375 @tab @emph{Not Available}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
376 @item Laplace Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
377 @tab @code{laplace_pdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
378 @tab @code{laplace_cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
379 @tab @code{laplace_inv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
380 @item Logistic Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
381 @tab @code{logistic_pdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
382 @tab @code{logistic_cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
383 @tab @code{logistic_inv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
384 @item Log-Normal Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
385 @tab @code{lognpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
386 @tab @code{logncdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
387 @tab @code{logninv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
388 @item Pascal Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
389 @tab @code{nbinpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
390 @tab @code{nbincdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
391 @tab @code{nbininv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
392 @item Univariate Normal Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
393 @tab @code{normpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
394 @tab @code{normcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
395 @tab @code{norminv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
396 @item Poisson Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
397 @tab @code{poisspdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
398 @tab @code{poisscdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
399 @tab @code{poissinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
400 @item t (Student) Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
401 @tab @code{tpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
402 @tab @code{tcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
403 @tab @code{tinv}
9069
634274aaa183 Cleanup documentation for stats.texi
Rik <rdrider0-list@yahoo.com>
parents: 8932
diff changeset
404 @item Univariate Discrete Distribution
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
405 @tab @code{unidpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
406 @tab @code{unidcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
407 @tab @code{unidinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
408 @item Uniform Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
409 @tab @code{unifpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
410 @tab @code{unifcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
411 @tab @code{unifinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
412 @item Weibull Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
413 @tab @code{wblpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
414 @tab @code{wblcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
415 @tab @code{wblinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
416 @end multitable
7081
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
417 @end ifnottex
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
418
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
419 @DOCSTRING(betacdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
420
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
421 @DOCSTRING(betainv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
422
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
423 @DOCSTRING(betapdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
424
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
425 @DOCSTRING(binocdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
426
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
427 @DOCSTRING(binoinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
428
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
429 @DOCSTRING(binopdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
430
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
431 @DOCSTRING(cauchy_cdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
432
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
433 @DOCSTRING(cauchy_inv)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
434
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
435 @DOCSTRING(cauchy_pdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
436
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
437 @DOCSTRING(chi2cdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
438
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
439 @DOCSTRING(chi2inv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
440
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
441 @DOCSTRING(chi2pdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
442
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
443 @DOCSTRING(discrete_cdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
444
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
445 @DOCSTRING(discrete_inv)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
446
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
447 @DOCSTRING(discrete_pdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
448
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
449 @DOCSTRING(empirical_cdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
450
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
451 @DOCSTRING(empirical_inv)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
452
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
453 @DOCSTRING(empirical_pdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
454
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
455 @DOCSTRING(expcdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
456
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
457 @DOCSTRING(expinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
458
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
459 @DOCSTRING(exppdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
460
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
461 @DOCSTRING(fcdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
462
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
463 @DOCSTRING(finv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
464
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
465 @DOCSTRING(fpdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
466
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
467 @DOCSTRING(gamcdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
468
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
469 @DOCSTRING(gaminv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
470
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
471 @DOCSTRING(gampdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
472
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
473 @DOCSTRING(geocdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
474
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
475 @DOCSTRING(geoinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
476
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
477 @DOCSTRING(geopdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
478
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
479 @DOCSTRING(hygecdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
480
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
481 @DOCSTRING(hygeinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
482
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
483 @DOCSTRING(hygepdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
484
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
485 @DOCSTRING(kolmogorov_smirnov_cdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
486
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
487 @DOCSTRING(laplace_cdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
488
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
489 @DOCSTRING(laplace_inv)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
490
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
491 @DOCSTRING(laplace_pdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
492
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
493 @DOCSTRING(logistic_cdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
494
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
495 @DOCSTRING(logistic_inv)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
496
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
497 @DOCSTRING(logistic_pdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
498
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
499 @DOCSTRING(logncdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
500
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
501 @DOCSTRING(logninv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
502
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
503 @DOCSTRING(lognpdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
504
6502
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
505 @DOCSTRING(nbincdf)
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
506
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
507 @DOCSTRING(nbininv)
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
508
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
509 @DOCSTRING(nbinpdf)
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
510
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
511 @DOCSTRING(normcdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
512
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
513 @DOCSTRING(norminv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
514
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
515 @DOCSTRING(normpdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
516
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
517 @DOCSTRING(poisscdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
518
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
519 @DOCSTRING(poissinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
520
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
521 @DOCSTRING(poisspdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
522
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
523 @DOCSTRING(tcdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
524
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
525 @DOCSTRING(tinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
526
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
527 @DOCSTRING(tpdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
528
6502
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
529 @DOCSTRING(unidcdf)
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
530
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
531 @DOCSTRING(unidinv)
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
532
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
533 @DOCSTRING(unidpdf)
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
534
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
535 @DOCSTRING(unifcdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
536
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
537 @DOCSTRING(unifinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
538
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
539 @DOCSTRING(unifpdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
540
6502
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
541 @DOCSTRING(wblcdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
542
6502
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
543 @DOCSTRING(wblinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
544
6502
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
545 @DOCSTRING(wblpdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
546
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
547 @node Random Number Generation
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
548 @section Random Number Generation
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
549
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
550 Octave can generate random numbers from a large number of distributions.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
551 The random number generators are based on the random number generators
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
552 described in @ref{Special Utility Matrices}.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
553 @c Should rand, randn, rande, randp, and randg be moved to here?
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
554
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
555 The following table summarizes the available random number generators
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
556 (in alphabetical order).
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
557
7081
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
558 @tex
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
559 \vskip 6pt
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
560 {\hbox to \hsize {\hfill\vbox{\offinterlineskip \tabskip=0pt
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
561 \halign{
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
562 \vrule height2.0ex depth1.ex width 0.6pt #\tabskip=0.3em &
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
563 # \hfil & \vrule # & # \hfil & # \vrule width 0.6pt \tabskip=0pt\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
564 \noalign{\hrule height 0.6pt}
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
565 & {\bf Distribution} && {\bf Function} &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
566 \noalign{\hrule}
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
567 & Beta Distribution && betarnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
568 & Binomial Distribution && binornd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
569 & Cauchy Distribution && cauchy\_rnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
570 & Chi-Square Distribution && chi2rnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
571 & Univariate Discrete Distribution && discrete\_rnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
572 & Empirical Distribution && empirical\_rnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
573 & Exponential Distribution && exprnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
574 & F Distribution && frnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
575 & Gamma Distribution && gamrnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
576 & Geometric Distribution && geornd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
577 & Hypergeometric Distribution && hygernd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
578 & Laplace Distribution && laplace\_rnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
579 & Logistic Distribution && logistic\_rnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
580 & Log-Normal Distribution && lognrnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
581 & Pascal Distribution && nbinrnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
582 & Univariate Normal Distribution && normrnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
583 & Poisson Distribution && poissrnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
584 & t (Student) Distribution && trnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
585 & Univariate Discrete Distribution && unidrnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
586 & Uniform Distribution && unifrnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
587 & Weibull Distribution && wblrnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
588 & Wiener Process && wienrnd &\cr
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
589 \noalign{\hrule height 0.6pt}
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
590 }}\hfill}}
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
591 @end tex
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
592 @ifnottex
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
593 @multitable @columnfractions .4 .3
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
594 @item @strong{Distribution} @tab @strong{Function}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
595 @item Beta Distribution @tab @code{betarnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
596 @item Binomial Distribution @tab @code{binornd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
597 @item Cauchy Distribution @tab @code{cauchy_rnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
598 @item Chi-Square Distribution @tab @code{chi2rnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
599 @item Univariate Discrete Distribution @tab @code{discrete_rnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
600 @item Empirical Distribution @tab @code{empirical_rnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
601 @item Exponential Distribution @tab @code{exprnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
602 @item F Distribution @tab @code{frnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
603 @item Gamma Distribution @tab @code{gamrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
604 @item Geometric Distribution @tab @code{geornd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
605 @item Hypergeometric Distribution @tab @code{hygernd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
606 @item Laplace Distribution @tab @code{laplace_rnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
607 @item Logistic Distribution @tab @code{logistic_rnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
608 @item Log-Normal Distribution @tab @code{lognrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
609 @item Pascal Distribution @tab @code{nbinrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
610 @item Univariate Normal Distribution @tab @code{normrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
611 @item Poisson Distribution @tab @code{poissrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
612 @item t (Student) Distribution @tab @code{trnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
613 @item Univariate Discrete Distribution @tab @code{unidrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
614 @item Uniform Distribution @tab @code{unifrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
615 @item Weibull Distribution @tab @code{wblrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
616 @item Wiener Process @tab @code{wienrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
617 @end multitable
7081
503001863427 [project @ 2007-10-31 01:08:14 by jwe]
jwe
parents: 7018
diff changeset
618 @end ifnottex
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
619
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
620 @DOCSTRING(betarnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
621
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
622 @DOCSTRING(binornd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
623
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
624 @DOCSTRING(cauchy_rnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
625
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
626 @DOCSTRING(chi2rnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
627
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
628 @DOCSTRING(discrete_rnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
629
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
630 @DOCSTRING(empirical_rnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
631
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
632 @DOCSTRING(exprnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
633
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
634 @DOCSTRING(frnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
635
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
636 @DOCSTRING(gamrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
637
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
638 @DOCSTRING(geornd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
639
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
640 @DOCSTRING(hygernd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
641
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
642 @DOCSTRING(laplace_rnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
643
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
644 @DOCSTRING(logistic_rnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
645
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
646 @DOCSTRING(lognrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
647
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
648 @DOCSTRING(nbinrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
649
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
650 @DOCSTRING(normrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
651
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
652 @DOCSTRING(poissrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
653
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
654 @DOCSTRING(trnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
655
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
656 @DOCSTRING(unidrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
657
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
658 @DOCSTRING(unifrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
659
6502
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
660 @DOCSTRING(wblrnd)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
661
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
662 @DOCSTRING(wienrnd)
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
663