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 / values.m < prev    next >
Text File  |  1999-04-29  |  1KB  |  46 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:  values (x)
  18. ##
  19. ## Return the different values in a column vector, arranged in ascending
  20. ## order.
  21.   
  22. ## Author:  KH <Kurt.Hornik@ci.tuwien.ac.at>
  23. ## Description:  Extract unique elements
  24.  
  25. function v = values (x)
  26.   
  27.   if (nargin != 1)
  28.     usage ("values (x)");
  29.   endif
  30.   
  31.   if !(is_vec (x))
  32.     error ("values:  x must be a vector");
  33.   endif
  34.  
  35.   i = any (isnan (x));
  36.   x = x(find(!isnan (x)));    # HACK!
  37.   n = length (x);
  38.   x = reshape (x, n, 1);
  39.   s = sort (x);
  40.   v = s([1; find (s(2:n) > s(1:n-1)) + 1]);
  41.   if (i)
  42.     v = [v; NaN];
  43.   endif
  44.  
  45. endfunction
  46.