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 |
5307
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, 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. |
6754
|
24 ## |
|
25 ## As an example, @code{values([1, 2, 3, 1])} returns the vector |
|
26 ## @code{[1, 2, 3]}. |
3453
|
27 ## @end deftypefn |
3426
|
28 |
5428
|
29 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> |
3456
|
30 ## Description: Extract unique elements |
3200
|
31 |
|
32 function v = values (x) |
3426
|
33 |
3200
|
34 if (nargin != 1) |
6046
|
35 print_usage (); |
3200
|
36 endif |
3426
|
37 |
4030
|
38 if (! (isvector (x))) |
3456
|
39 error ("values: x must be a vector"); |
3200
|
40 endif |
|
41 |
|
42 i = any (isnan (x)); |
3426
|
43 x = x(find(!isnan (x))); # HACK! |
3200
|
44 n = length (x); |
|
45 x = reshape (x, n, 1); |
|
46 s = sort (x); |
3388
|
47 v = s([1; (find (s(2:n) > s(1:n-1)) + 1)]); |
3200
|
48 if (i) |
|
49 v = [v; NaN]; |
|
50 endif |
|
51 |
|
52 endfunction |