home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fb.zip / octave / SCRIPTS.ZIP / scripts / statistics / distributions / exponential_cdf.m < prev    next >
Encoding:
Text File  |  1999-12-16  |  1.8 KB  |  62 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:  exponential_cdf (x, lambda)
  18. ##
  19. ## For each element of x, compute the cumulative distribution function
  20. ## (CDF) at x of the exponential distribution with parameter lambda.
  21. ##
  22. ## The arguments can be of common size or scalar.
  23.   
  24. ## Author:  KH <Kurt.Hornik@ci.tuwien.ac.at>
  25. ## Description:  CDF of the exponential distribution
  26.  
  27. function cdf = exponential_cdf (x, l)
  28.   
  29.   if (nargin != 2)
  30.     usage ("exponential_cdf (x, lambda)");
  31.   endif
  32.   
  33.   [retval, x, l] = common_size (x, l);
  34.   if (retval > 0)
  35.     error ("exponential_cdf: x and lambda must be of common size or scalar");
  36.   endif
  37.   
  38.   [r, c] = size (x);
  39.   s = r * c;
  40.   x = reshape (x, 1, s);
  41.   l = reshape (l, 1, s);
  42.   cdf = zeros (1, s);
  43.   
  44.   k = find (isnan (x) | !(l > 0));
  45.   if any (k)
  46.     cdf(k) = NaN * ones (1, length (k));
  47.   endif
  48.   
  49.   k = find ((x == Inf) & (l > 0));
  50.   if any (k)
  51.     cdf(k) = ones (1, length (k));
  52.   endif
  53.   
  54.   k = find ((x > 0) & (x < Inf) & (l > 0));
  55.   if any (k)
  56.     cdf (k) = 1 - exp (- l(k) .* x(k));
  57.   endif
  58.  
  59.   cdf = reshape (cdf, r, c);
  60.   
  61. endfunction
  62.