home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts / statistics / distributions / logistic_inv.m < prev    next >
Encoding:
Text File  |  1997-02-19  |  1.6 KB  |  59 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:  logistic_inv (x)
  18. ##
  19. ## For each component of x, compute the quantile (the inverse of the
  20. ## CDF) at x of the logistic distribution.
  21.  
  22. ## Author:  KH <Kurt.Hornik@ci.tuwien.ac.at>
  23. ## Description:  Quantile function of the logistic distribution
  24.  
  25. function inv = logistic_inv (x)
  26.  
  27.   if (nargin != 1)
  28.     usage ("logistic_inv (x)");
  29.   endif
  30.  
  31.   [r, c] = size (x);
  32.   s = r * c;
  33.   x = reshape (x, 1, s);
  34.   inv = zeros (1, s);
  35.  
  36.   k = find ((x < 0) | (x > 1) | isnan (x));
  37.   if any (k)
  38.     inv(k) = NaN * ones (1, length (k));
  39.   endif
  40.  
  41.   k = find (x == 0);
  42.   if any (k)
  43.     inv(k) = (-Inf) * ones (1, length (k));
  44.   endif
  45.  
  46.   k = find (x == 1);
  47.   if any (k)
  48.     inv(k) = Inf * ones (1, length (k));
  49.   endif
  50.   
  51.   k = find ((x > 0) & (x < 1));
  52.   if any (k)
  53.     inv (k) = - log (1 ./ x(k) - 1);
  54.   endif
  55.   
  56.   inv = reshape (inv, r, c);
  57.   
  58. endfunction
  59.