3191
|
1 ## Copyright (C) 1995, 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 |
|
17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA |
|
18 ## 02111-1307, USA. |
3191
|
19 |
3456
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} stdnormal_pdf (@var{x}) |
|
22 ## For each element of @var{x}, compute the probability density function |
|
23 ## (PDF) of the standard normal distribution at @var{x}. |
|
24 ## @end deftypefn |
3426
|
25 |
3456
|
26 ## Author: TT <Teresa.Twaroch@ci.tuwien.ac.at> |
|
27 ## Description: PDF of the standard normal distribution |
3191
|
28 |
|
29 function pdf = stdnormal_pdf (x) |
|
30 |
|
31 if (nargin != 1) |
|
32 usage ("stdnormal_pdf (x)"); |
|
33 endif |
3426
|
34 |
3191
|
35 [r, c] = size (x); |
|
36 s = r * c; |
|
37 x = reshape (x, 1, s); |
|
38 pdf = zeros (1, s); |
3426
|
39 |
3191
|
40 k = find (isnan (x)); |
3456
|
41 if (any (k)) |
3191
|
42 pdf(k) = NaN * ones (1, length (k)); |
|
43 endif |
3426
|
44 |
3191
|
45 k = find (!isinf (x)); |
3456
|
46 if (any (k)) |
3457
|
47 pdf (k) = (2 * pi)^(- 1/2) * exp (- x(k) .^ 2 / 2); |
3191
|
48 endif |
3426
|
49 |
3191
|
50 pdf = reshape (pdf, r, c); |
3426
|
51 |
3191
|
52 endfunction |