3191
|
1 ## Copyright (C) 1995, 1996, 1997 Kurt Hornik |
3426
|
2 ## |
3191
|
3 ## This program is free software; you can redistribute it and/or modify |
|
4 ## it under the terms of the GNU General Public License as published by |
|
5 ## the Free Software Foundation; either version 2, or (at your option) |
|
6 ## any later version. |
3426
|
7 ## |
3191
|
8 ## This program is distributed in the hope that it will be useful, but |
|
9 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
11 ## General Public License for more details. |
|
12 ## |
3191
|
13 ## You should have received a copy of the GNU General Public License |
|
14 ## along with this file. If not, write to the Free Software Foundation, |
|
15 ## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
16 |
|
17 ## usage: stdnormal_rnd (r, c) |
|
18 ## |
|
19 ## Return an r by c matrix of random numbers from the standard normal |
|
20 ## distribution. |
3426
|
21 |
3191
|
22 ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at> |
|
23 ## Description: Random deviates from the standard normal distribution |
|
24 |
|
25 function rnd = stdnormal_rnd (r, c) |
3426
|
26 |
3191
|
27 if (nargin != 2) |
|
28 usage ("stdnormal_rnd (r, c)"); |
|
29 endif |
|
30 |
|
31 if ( !(is_scalar (r) && (r > 0) && (r == round (r))) ) |
|
32 error ("stdnormal_rnd: r must be a positive integer"); |
|
33 endif |
|
34 if ( !(is_scalar (c) && (c > 0) && (c == round (c))) ) |
|
35 error ("stdnormal_rnd: c must be a positive integer"); |
|
36 endif |
|
37 |
|
38 rnd = randn (r, c); |
3426
|
39 |
3191
|
40 endfunction |