annotate doc/interpreter/stats.txi @ 6888:b3d286e8a243

[project @ 2007-09-12 06:40:58 by jwe]
author jwe
date Wed, 12 Sep 2007 06:44:50 +0000
parents 3c64128e621c
children 46d1ad37d943
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6778
083721ae3dfa [project @ 2007-07-18 17:03:10 by jwe]
jwe
parents: 6754
diff changeset
1 @c Copyright (C) 1996, 1997, 2007 John W. Eaton
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
2 @c This is part of the Octave manual.
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
3 @c For copying conditions, see the file gpl.texi.
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
4
4167
aae05d51353c [project @ 2002-11-12 02:52:50 by jwe]
jwe
parents: 3456
diff changeset
5 @node Statistics
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
6 @chapter Statistics
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
7
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
8 Octave has support for various statistical methods. This includes
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
9 basic descriptive statistics, statistical tests, random number generation,
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
10 and much more.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
11
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
12 The functions that analyze data all assume that multidimensional data
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
13 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
14 column is a variable. So, the matrix defined by
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
15
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
16 @example
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
17 a = [ 0.9, 0.7;
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
18 0.1, 0.1;
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
19 0.5, 0.4 ];
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
20 @end example
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
21
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
22 @noindent
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
23 contains three observations from a two-dimensional distribution.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
24 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
25 different arrangements.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
26
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
27 It should be noted that the statistics functions doesn't handle data
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
28 containing NaN, NA, or Inf. Such values needs to be handled explicitly.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
29
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
30 @menu
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
31 * Descriptive Statistics::
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
32 * Basic Statistical Functions::
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
33 * Statistical Plots::
3454
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
34 * Tests::
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
35 * Models::
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
36 * Distributions::
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
37 * Random Number Generation::
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
38 @end menu
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
39
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
40 @node Descriptive Statistics
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
41 @section Descriptive Statistics
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
42
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
43 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
44
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
45 @DOCSTRING(mean)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
46
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
47 @DOCSTRING(median)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
48
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
49 @DOCSTRING(meansq)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
50
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
51 @DOCSTRING(std)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
52
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
53 @DOCSTRING(var)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
54
6863
3c64128e621c [project @ 2007-09-05 07:52:48 by dbateman]
dbateman
parents: 6778
diff changeset
55 @DOCSTRING(mode)
3c64128e621c [project @ 2007-09-05 07:52:48 by dbateman]
dbateman
parents: 6778
diff changeset
56
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
57 @DOCSTRING(cov)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
58
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
59 @DOCSTRING(cor)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
60
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
61 @DOCSTRING(corrcoef)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
62
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
63 @DOCSTRING(kurtosis)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
64
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
65 @DOCSTRING(skewness)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
66
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
67 @DOCSTRING(statistics)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
68
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
69 @DOCSTRING(moment)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
70
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
71 @node Basic Statistical Functions
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
72 @section Basic Statistical Functions
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
73
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
74 Octave also supports various helpful statistical functions.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
75
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 3294
diff changeset
76 @DOCSTRING(mahalanobis)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
77
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
78 @DOCSTRING(center)
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
79
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
80 @DOCSTRING(studentize)
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
81
6550
1b7a6061a05d [project @ 2007-04-20 07:40:26 by jwe]
jwe
parents: 6502
diff changeset
82 @DOCSTRING(nchoosek)
1b7a6061a05d [project @ 2007-04-20 07:40:26 by jwe]
jwe
parents: 6502
diff changeset
83
1b7a6061a05d [project @ 2007-04-20 07:40:26 by jwe]
jwe
parents: 6502
diff changeset
84 @DOCSTRING(perms)
1b7a6061a05d [project @ 2007-04-20 07:40:26 by jwe]
jwe
parents: 6502
diff changeset
85
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
86 @DOCSTRING(values)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
87
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
88 @DOCSTRING(table)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
89
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
90 @DOCSTRING(spearman)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
91
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
92 @DOCSTRING(run_count)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
93
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
94 @DOCSTRING(ranks)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
95
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
96 @DOCSTRING(range)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
97
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
98 @DOCSTRING(probit)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
99
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
100 @DOCSTRING(logit)
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
101
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
102 @DOCSTRING(cloglog)
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
103
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
104 @DOCSTRING(kendall)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
105
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
106 @DOCSTRING(iqr)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
107
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
108 @DOCSTRING(cut)
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
109
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
110 @node Statistical Plots
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
111 @section Statistical Plots
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
112
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
113 @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
114 @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
115
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
116 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
117 (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
118 data set comes from a certain distribution.
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
119
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
120 It is worth noticing that Octave can also show histograms of data
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
121 using the @code{hist} function as described in
6888
b3d286e8a243 [project @ 2007-09-12 06:40:58 by jwe]
jwe
parents: 6863
diff changeset
122 @ref{Two-Dimensional Plots}.
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
123
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
124 @DOCSTRING(qqplot)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
125
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
126 @DOCSTRING(ppplot)
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
127
4167
aae05d51353c [project @ 2002-11-12 02:52:50 by jwe]
jwe
parents: 3456
diff changeset
128 @node Tests
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
129 @section Tests
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
130
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
131 Octave can perform several different statistical tests. The following
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
132 table summarizes the available tests.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
133
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
134 @multitable @columnfractions .4 .5
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
135 @item @strong{Hypothesis}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
136 @tab @strong{Test Functions}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
137 @item Equal mean values
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
138 @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
139 @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
140 @item Equal medians
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
141 @tab @code{kruskal_wallis_test}, @code{sign_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
142 @item Equal variances
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
143 @tab @code{bartlett_test}, @code{manova}, @code{var_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
144 @item Equal distributions
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
145 @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
146 @code{u_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
147 @item Equal marginal frequencies
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
148 @tab @code{mcnemar_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
149 @item Equal success probabilities
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
150 @tab @code{prop_test_2}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
151 @item Independent observations
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
152 @tab @code{chisquare_test_independence}, @code{run_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
153 @item Uncorrelated observations
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
154 @tab @code{cor_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
155 @item Given mean value
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
156 @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
157 @item Observations from given distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
158 @tab @code{kolmogorov_smirnov_test}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
159 @item Regression
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
160 @tab @code{f_test_regression}, @code{t_test_regression}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
161 @end multitable
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
162
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
163 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
164 Assuming that the test hypothesis is true, the p-value is the probability
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
165 of obtaining a worse result then the observed one. So large p-values
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
166 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
167 if the p-value exceeds @math{0.05}.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
168
3454
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
169 @DOCSTRING(anova)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
170
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
171 @DOCSTRING(bartlett_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
172
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
173 @DOCSTRING(chisquare_test_homogeneity)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
174
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
175 @DOCSTRING(chisquare_test_independence)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
176
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
177 @DOCSTRING(cor_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
178
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
179 @DOCSTRING(f_test_regression)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
180
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
181 @DOCSTRING(hotelling_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
182
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
183 @DOCSTRING(hotelling_test_2)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
184
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
185 @DOCSTRING(kolmogorov_smirnov_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
186
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
187 @DOCSTRING(kolmogorov_smirnov_test_2)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
188
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
189 @DOCSTRING(kruskal_wallis_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
190
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
191 @DOCSTRING(manova)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
192
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
193 @DOCSTRING(mcnemar_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
194
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
195 @DOCSTRING(prop_test_2)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
196
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
197 @DOCSTRING(run_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
198
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
199 @DOCSTRING(sign_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
200
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
201 @DOCSTRING(t_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
202
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
203 @DOCSTRING(t_test_2)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
204
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
205 @DOCSTRING(t_test_regression)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
206
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
207 @DOCSTRING(u_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
208
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
209 @DOCSTRING(var_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
210
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
211 @DOCSTRING(welch_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
212
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
213 @DOCSTRING(wilcoxon_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
214
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
215 @DOCSTRING(z_test)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
216
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
217 @DOCSTRING(z_test_2)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
218
4167
aae05d51353c [project @ 2002-11-12 02:52:50 by jwe]
jwe
parents: 3456
diff changeset
219 @node Models
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
220 @section Models
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
221
3454
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
222 @DOCSTRING(logistic_regression)
d8b731d3f7a3 [project @ 2000-01-18 10:13:31 by jwe]
jwe
parents: 3453
diff changeset
223
4167
aae05d51353c [project @ 2002-11-12 02:52:50 by jwe]
jwe
parents: 3456
diff changeset
224 @node Distributions
3453
71d2e09c15a2 [project @ 2000-01-18 08:32:09 by jwe]
jwe
parents: 3439
diff changeset
225 @section Distributions
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
226
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
227 Octave has functions for computing the Probability Density Function
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
228 (PDF), the Cumulative Distribution function (CDF), and the quantile
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
229 (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
230
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
231 The following table summarizes the supported distributions (in
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
232 alphabetical order).
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
233
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
234 @multitable @columnfractions .4 .2 .2 .2
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
235 @item @strong{Distribution}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
236 @tab @strong{PDF}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
237 @tab @strong{CDF}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
238 @tab @strong{Quantile}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
239 @item Beta Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
240 @tab @code{betapdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
241 @tab @code{betacdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
242 @tab @code{betainv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
243 @item Binomial Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
244 @tab @code{binopdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
245 @tab @code{binocdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
246 @tab @code{binoinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
247 @item Cauchy Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
248 @tab @code{cauchy_pdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
249 @tab @code{cauchy_cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
250 @tab @code{cauchy_inv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
251 @item Chi-Square Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
252 @tab @code{chi2pdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
253 @tab @code{chi2cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
254 @tab @code{chi2inv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
255 @item Univariate Discrete Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
256 @tab @code{discrete_pdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
257 @tab @code{discrete_cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
258 @tab @code{discrete_inv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
259 @item Empirical Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
260 @tab @code{empirical_pdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
261 @tab @code{empirical_cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
262 @tab @code{empirical_inv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
263 @item Exponential Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
264 @tab @code{exppdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
265 @tab @code{expcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
266 @tab @code{expinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
267 @item F Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
268 @tab @code{fpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
269 @tab @code{fcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
270 @tab @code{finv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
271 @item Gamma Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
272 @tab @code{gampdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
273 @tab @code{gamcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
274 @tab @code{gaminv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
275 @item Geometric Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
276 @tab @code{geopdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
277 @tab @code{geocdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
278 @tab @code{geoinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
279 @item Hypergeometric Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
280 @tab @code{hygepdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
281 @tab @code{hygecdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
282 @tab @code{hygeinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
283 @item Kolmogorov Smirnov Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
284 @tab @emph{Not Available}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
285 @tab @code{kolmogorov_smirnov_cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
286 @tab @emph{Not Available}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
287 @item Laplace Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
288 @tab @code{laplace_pdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
289 @tab @code{laplace_cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
290 @tab @code{laplace_inv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
291 @item Logistic Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
292 @tab @code{logistic_pdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
293 @tab @code{logistic_cdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
294 @tab @code{logistic_inv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
295 @item Log-Normal Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
296 @tab @code{lognpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
297 @tab @code{logncdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
298 @tab @code{logninv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
299 @item Pascal Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
300 @tab @code{nbinpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
301 @tab @code{nbincdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
302 @tab @code{nbininv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
303 @item Univariate Normal Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
304 @tab @code{normpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
305 @tab @code{normcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
306 @tab @code{norminv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
307 @item Poisson Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
308 @tab @code{poisspdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
309 @tab @code{poisscdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
310 @tab @code{poissinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
311 @item t (Student) Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
312 @tab @code{tpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
313 @tab @code{tcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
314 @tab @code{tinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
315 @item Univariate Discrete Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
316 @tab @code{unidpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
317 @tab @code{unidcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
318 @tab @code{unidinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
319 @item Uniform Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
320 @tab @code{unifpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
321 @tab @code{unifcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
322 @tab @code{unifinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
323 @item Weibull Distribution
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
324 @tab @code{wblpdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
325 @tab @code{wblcdf}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
326 @tab @code{wblinv}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
327 @end multitable
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
328
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
329 @DOCSTRING(betacdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
330
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
331 @DOCSTRING(betainv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
332
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
333 @DOCSTRING(betapdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
334
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
335 @DOCSTRING(binocdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
336
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
337 @DOCSTRING(binoinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
338
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
339 @DOCSTRING(binopdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
340
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
341 @DOCSTRING(cauchy_cdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
342
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
343 @DOCSTRING(cauchy_inv)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
344
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
345 @DOCSTRING(cauchy_pdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
346
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
347 @DOCSTRING(chi2cdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
348
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
349 @DOCSTRING(chi2inv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
350
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
351 @DOCSTRING(chi2pdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
352
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
353 @DOCSTRING(discrete_cdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
354
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
355 @DOCSTRING(discrete_inv)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
356
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
357 @DOCSTRING(discrete_pdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
358
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
359 @DOCSTRING(empirical_cdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
360
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
361 @DOCSTRING(empirical_inv)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
362
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
363 @DOCSTRING(empirical_pdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
364
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
365 @DOCSTRING(expcdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
366
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
367 @DOCSTRING(expinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
368
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
369 @DOCSTRING(exppdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
370
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
371 @DOCSTRING(fcdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
372
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
373 @DOCSTRING(finv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
374
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
375 @DOCSTRING(fpdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
376
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
377 @DOCSTRING(gamcdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
378
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
379 @DOCSTRING(gaminv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
380
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
381 @DOCSTRING(gampdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
382
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
383 @DOCSTRING(geocdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
384
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
385 @DOCSTRING(geoinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
386
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
387 @DOCSTRING(geopdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
388
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
389 @DOCSTRING(hygecdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
390
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
391 @DOCSTRING(hygeinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
392
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
393 @DOCSTRING(hygepdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
394
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
395 @DOCSTRING(kolmogorov_smirnov_cdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
396
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
397 @DOCSTRING(laplace_cdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
398
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
399 @DOCSTRING(laplace_inv)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
400
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
401 @DOCSTRING(laplace_pdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
402
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
403 @DOCSTRING(logistic_cdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
404
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
405 @DOCSTRING(logistic_inv)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
406
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
407 @DOCSTRING(logistic_pdf)
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
408
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
409 @DOCSTRING(logncdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
410
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
411 @DOCSTRING(logninv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
412
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
413 @DOCSTRING(lognpdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
414
6502
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
415 @DOCSTRING(nbincdf)
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
416
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
417 @DOCSTRING(nbininv)
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
418
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
419 @DOCSTRING(nbinpdf)
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
420
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
421 @DOCSTRING(normcdf)
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(norminv)
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(normpdf)
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(poisscdf)
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(poissinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
430
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
431 @DOCSTRING(poisspdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
432
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
433 @DOCSTRING(tcdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
434
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
435 @DOCSTRING(tinv)
3456
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(tpdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
438
6502
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
439 @DOCSTRING(unidcdf)
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
440
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
441 @DOCSTRING(unidinv)
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
442
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
443 @DOCSTRING(unidpdf)
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
444
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
445 @DOCSTRING(unifcdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
446
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
447 @DOCSTRING(unifinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
448
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
449 @DOCSTRING(unifpdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
450
6502
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
451 @DOCSTRING(wblcdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
452
6502
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
453 @DOCSTRING(wblinv)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
454
6502
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
455 @DOCSTRING(wblpdf)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
456
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
457 @node Random Number Generation
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
458 @section Random Number Generation
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
459
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
460 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
461 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
462 described in @ref{Special Utility Matrices}.
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
463 @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
464
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
465 The following table summarizes the available random number generators
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
466 (in alphabetical order).
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
467
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
468 @multitable @columnfractions .4 .3
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
469 @item @strong{Distribution} @tab @strong{Function}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
470 @item Beta Distribution @tab @code{betarnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
471 @item Binomial Distribution @tab @code{binornd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
472 @item Cauchy Distribution @tab @code{cauchy_rnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
473 @item Chi-Square Distribution @tab @code{chi2rnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
474 @item Univariate Discrete Distribution @tab @code{discrete_rnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
475 @item Empirical Distribution @tab @code{empirical_rnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
476 @item Exponential Distribution @tab @code{exprnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
477 @item F Distribution @tab @code{frnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
478 @item Gamma Distribution @tab @code{gamrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
479 @item Geometric Distribution @tab @code{geornd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
480 @item Hypergeometric Distribution @tab @code{hygernd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
481 @item Laplace Distribution @tab @code{laplace_rnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
482 @item Logistic Distribution @tab @code{logistic_rnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
483 @item Log-Normal Distribution @tab @code{lognrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
484 @item Pascal Distribution @tab @code{nbinrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
485 @item Univariate Normal Distribution @tab @code{normrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
486 @item Poisson Distribution @tab @code{poissrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
487 @item t (Student) Distribution @tab @code{trnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
488 @item Univariate Discrete Distribution @tab @code{unidrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
489 @item Uniform Distribution @tab @code{unifrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
490 @item Weibull Distribution @tab @code{wblrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
491 @item Wiener Process @tab @code{wienrnd}
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
492 @end multitable
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
493
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
494 @DOCSTRING(betarnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
495
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
496 @DOCSTRING(binornd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
497
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
498 @DOCSTRING(cauchy_rnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
499
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
500 @DOCSTRING(chi2rnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
501
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
502 @DOCSTRING(discrete_rnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
503
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
504 @DOCSTRING(empirical_rnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
505
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
506 @DOCSTRING(exprnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
507
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
508 @DOCSTRING(frnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
509
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
510 @DOCSTRING(gamrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
511
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
512 @DOCSTRING(geornd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
513
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
514 @DOCSTRING(hygernd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
515
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
516 @DOCSTRING(laplace_rnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
517
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
518 @DOCSTRING(logistic_rnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
519
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
520 @DOCSTRING(lognrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
521
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
522 @DOCSTRING(nbinrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
523
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
524 @DOCSTRING(normrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
525
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
526 @DOCSTRING(poissrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
527
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
528 @DOCSTRING(trnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
529
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
530 @DOCSTRING(unidrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
531
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
532 @DOCSTRING(unifrnd)
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
533
6502
6ab0a8767780 [project @ 2007-04-06 03:32:06 by jwe]
jwe
parents: 5775
diff changeset
534 @DOCSTRING(wblrnd)
3456
434790acb067 [project @ 2000-01-19 06:58:51 by jwe]
jwe
parents: 3454
diff changeset
535
5412
48b81cd789f2 [project @ 2005-07-13 19:25:43 by jwe]
jwe
parents: 5041
diff changeset
536 @DOCSTRING(wienrnd)
6754
451b346d8c2f [project @ 2007-06-25 17:31:46 by jwe]
jwe
parents: 6618
diff changeset
537