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} {} discrete_pdf (@var{x}, @var{v}, @var{p}) |
|
22 ## For each element of @var{x}, compute the probability density function |
6754
|
23 ## (PDF) at @var{x} of a univariate discrete distribution which assumes |
3456
|
24 ## the values in @var{v} with probabilities @var{p}. |
|
25 ## @end deftypefn |
3191
|
26 |
5428
|
27 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> |
3456
|
28 ## Description: pDF of a discrete distribution |
3191
|
29 |
3456
|
30 function pdf = discrete_pdf (x, v, p) |
3426
|
31 |
3191
|
32 if (nargin != 3) |
6046
|
33 print_usage (); |
3191
|
34 endif |
|
35 |
4859
|
36 sz = size (x); |
3191
|
37 |
4030
|
38 if (! isvector (v)) |
3456
|
39 error ("discrete_pdf: v must be a vector"); |
4030
|
40 elseif (! isvector (p) || (length (p) != length (v))) |
3456
|
41 error ("discrete_pdf: p must be a vector with length (v) elements"); |
|
42 elseif (! (all (p >= 0) && any (p))) |
|
43 error ("discrete_pdf: p must be a nonzero, nonnegative vector"); |
3191
|
44 endif |
|
45 |
4859
|
46 n = numel (x); |
3456
|
47 m = length (v); |
|
48 x = reshape (x, n, 1); |
|
49 v = reshape (v, 1, m); |
|
50 p = reshape (p / sum (p), m, 1); |
3191
|
51 |
4859
|
52 pdf = zeros (sz); |
3456
|
53 k = find (isnan (x)); |
|
54 if (any (k)) |
4859
|
55 pdf (k) = NaN; |
3191
|
56 endif |
3456
|
57 k = find (!isnan (x)); |
|
58 if (any (k)) |
3191
|
59 n = length (k); |
4137
|
60 pdf (k) = ((x(k) * ones (1, m)) == (ones (n, 1) * v)) * p; |
3191
|
61 endif |
|
62 |
|
63 endfunction |