3191
|
1 ## Copyright (C) 1996, 1997 Kurt Hornik |
3426
|
2 ## |
3922
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
3191
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
3426
|
9 ## |
3922
|
10 ## Octave is distributed in the hope that it will be useful, but |
3191
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
13 ## General Public License for more details. |
|
14 ## |
3191
|
15 ## You should have received a copy of the GNU General Public License |
3922
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
5307
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, USA. |
3191
|
19 |
3456
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} empirical_rnd (@var{n}, @var{data}) |
4859
|
22 ## @deftypefnx {Function File} {} empirical_rnd (@var{data}, @var{r}, @var{c}) |
|
23 ## @deftypefnx {Function File} {} empirical_rnd (@var{data}, @var{sz}) |
3456
|
24 ## Generate a bootstrap sample of size @var{n} from the empirical |
|
25 ## distribution obtained from the univariate sample @var{data}. |
4859
|
26 ## |
|
27 ## If @var{r} and @var{c} are given create a matrix with @var{r} rows and |
|
28 ## @var{c} columns. Or if @var{sz} is a vector, create a matrix of size |
|
29 ## @var{sz}. |
3456
|
30 ## @end deftypefn |
3191
|
31 |
5428
|
32 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> |
3456
|
33 ## Description: Bootstrap samples from the empirical distribution |
3426
|
34 |
4859
|
35 function rnd = empirical_rnd (data, r, c) |
|
36 |
|
37 if (nargin == 2) |
|
38 if (isscalar(data)) |
|
39 c = data; |
|
40 data = r; |
|
41 r = 1; |
|
42 endif |
|
43 elseif (nargin != 3) |
6046
|
44 print_usage (); |
4859
|
45 endif |
3426
|
46 |
4030
|
47 if (! isvector (data)) |
3456
|
48 error ("empirical_rnd: data must be a vector"); |
3191
|
49 endif |
|
50 |
4859
|
51 rnd = discrete_rnd (data, ones (size (data)) / length (data), r, c); |
3191
|
52 |
|
53 endfunction |