home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts.fat / stat / base / ranks.m < prev    next >
Text File  |  1999-04-29  |  2KB  |  50 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:  ranks (x)
  18. ##
  19. ## If x is a vector, return the (column) vector of ranks of x adjusted
  20. ## for ties.  
  21. ## If x is a matrix, do the above for each column of x.
  22.   
  23. ## Author:  KH <Kurt.Hornik@ci.tuwien.ac.at>
  24. ## Description:  Compute ranks
  25.  
  26. ## This code is rather ugly, but is there an easy way to get the ranks
  27. ## adjusted for ties from sort?
  28.   
  29. function y = ranks (x)
  30.  
  31.   if (nargin != 1)
  32.     usage ("ranks (x)");
  33.   endif
  34.   
  35.   y = [];
  36.  
  37.   [r, c] = size (x);
  38.   if ((r == 1) && (c > 0))
  39.     p = x' * ones (1, c);
  40.     y = sum (p < p') + (sum (p == p') + 1) / 2;
  41.   elseif (r > 1)
  42.     o = ones (1, r);
  43.     for i = 1 : c;
  44.       p = x (:, i) * o;
  45.       y = [y, ( sum (p < p') + (sum (p == p') + 1) / 2 )'];
  46.     endfor
  47.   endif
  48.   
  49. endfunction
  50.