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

  1. ## Copyright (C) 1995, 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:  chisquare_pdf (x, n)
  18. ##
  19. ## For each element of x, compute the probability density function (PDF)
  20. ## at x of the chisquare distribution with k degrees of freedom.
  21.  
  22. ## Author:  TT <Teresa.Twaroch@ci.tuwien.ac.at>
  23. ## Description:  PDF of the chi-sqaure distribution
  24.  
  25. function pdf = chisquare_pdf (x, n)
  26.   
  27.   if (nargin != 2)
  28.     usage ("chisquare_pdf (x, n)");
  29.   endif
  30.  
  31.   [retval, x, n] = common_size (x, n);
  32.   if (retval > 0)
  33.     error (["chisquare_pdf:  ", ...
  34.         "x and n must be of common size or scalar"]);
  35.   endif
  36.   
  37.   pdf = gamma_pdf (x, n / 2, 1 / 2);
  38.   
  39.   ## should we really only allow for positive integer n?
  40.   k = find (n != round (n));
  41.   if any (k)
  42.     fprintf (stderr, ...
  43.          "WARNING:  n should be positive integer\n");
  44.     [r, c] = size (x);
  45.     pdf = reshape (pdf, 1, r * c);
  46.     pdf(k) = NaN * ones (1, length (k));
  47.     pdf = reshape (pdf, r, c);
  48.   endif
  49.   
  50. endfunction
  51.