home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts / statistics / distributions / discrete_pdf.m < prev    next >
Text File  |  1997-02-26  |  2KB  |  62 lines

  1. ## Copyright (C) 1996, 1997  Kurt Hornik
  2. ## 
  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.
  7. ## 
  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
  11. ## General Public License for more details. 
  12. ## 
  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:  discrete_pdf (X, V, P)
  18. ##
  19. ## For each element of X, compute the probability density function (PDF)
  20. ## at X of a univariate discrete distribution which assumes the values
  21. ## in V with probabilities P.
  22.  
  23. ## Author:  KH <Kurt.Hornik@ci.tuwien.ac.at>
  24. ## Description:  PDF of a discrete distribution
  25.  
  26. function pdf = discrete_pdf (X, V, P)
  27.   
  28.   if (nargin != 3)
  29.     usage ("discrete_pdf (X, V, P)");
  30.   endif
  31.  
  32.   [r, c] = size (X);
  33.  
  34.   if (! is_vector (V))
  35.     error ("discrete_pdf:  V must be a vector");
  36.   elseif (! is_vector (P) || (length (P) != length (V)))
  37.     error ("discrete_pdf:  P must be a vector with length (V) elements");
  38.   elseif (! (all (P >= 0) && any (P)))
  39.     error ("discrete_pdf:  P must be a nonzero, nonnegative vector");
  40.   endif
  41.  
  42.   n = r * c;
  43.   m = length (V);
  44.   X = reshape (X, n, 1);
  45.   V = reshape (V, 1, m);
  46.   P = reshape (P / sum (P), m, 1);
  47.  
  48.   pdf = zeros (n, 1);
  49.   k = find (isnan (X));
  50.   if any (k)
  51.     pdf (k) = NaN * ones (length (k), 1);
  52.   endif
  53.   k = find (!isnan (X));
  54.   if any (k)
  55.     n = length (k);
  56.     pdf (k) = ((X(k) * ones (1, m)) == (ones (n, 1) * V)) * P;
  57.   endif
  58.  
  59.   pdf = reshape (pdf, r, c);
  60.  
  61. endfunction
  62.