3200
|
1 ## Copyright (C) 1995, 1996, 1997 Kurt Hornik |
3426
|
2 ## |
3922
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
3200
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
3426
|
9 ## |
3922
|
10 ## Octave is distributed in the hope that it will be useful, but |
3200
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
13 ## General Public License for more details. |
|
14 ## |
3200
|
15 ## You should have received a copy of the GNU General Public License |
3922
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
|
17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA |
|
18 ## 02111-1307, USA. |
3200
|
19 |
3453
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} values (@var{x}) |
3200
|
22 ## Return the different values in a column vector, arranged in ascending |
|
23 ## order. |
3453
|
24 ## @end deftypefn |
3426
|
25 |
3456
|
26 ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at> |
|
27 ## Description: Extract unique elements |
3200
|
28 |
|
29 function v = values (x) |
3426
|
30 |
3200
|
31 if (nargin != 1) |
|
32 usage ("values (x)"); |
|
33 endif |
3426
|
34 |
3457
|
35 if (! (is_vector (x))) |
3456
|
36 error ("values: x must be a vector"); |
3200
|
37 endif |
|
38 |
|
39 i = any (isnan (x)); |
3426
|
40 x = x(find(!isnan (x))); # HACK! |
3200
|
41 n = length (x); |
|
42 x = reshape (x, n, 1); |
|
43 s = sort (x); |
3388
|
44 v = s([1; (find (s(2:n) > s(1:n-1)) + 1)]); |
3200
|
45 if (i) |
|
46 v = [v; NaN]; |
|
47 endif |
|
48 |
|
49 endfunction |