]> Creatis software - CreaPhase.git/blob - octave_packages/m/statistics/base/runlength.m
update packages
[CreaPhase.git] / octave_packages / m / statistics / base / runlength.m
1 ## Copyright (C) 2005-2012 Paul Kienzle
2 ##
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
7 ## the Free Software Foundation; either version 3 of the License, or (at
8 ## your option) any later version.
9 ##
10 ## Octave is distributed in the hope that it will be useful, but
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 ## General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING.  If not, see
17 ## <http://www.gnu.org/licenses/>.
18
19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {[count, value] =} runlength (@var{x})
21 ## Find the lengths of all sequences of common values.  Return the
22 ## vector of lengths and the value that was repeated.
23 ##
24 ## @example
25 ## @group
26 ## runlength ([2, 2, 0, 4, 4, 4, 0, 1, 1, 1, 1])
27 ## @result{}  [2, 1, 3, 1, 4]
28 ## @end group
29 ## @end example
30 ## @end deftypefn
31
32 function [count, value] = runlength (x)
33
34   if (nargin != 1)
35     print_usage ();
36   endif
37
38   if (!(isnumeric (x) || islogical (x)) || !isvector (x))
39     error ("runlength: X must be a numeric vector");
40   endif
41
42   if (iscolumn (x))
43     x = x.';
44   endif
45
46   idx = [find(x(1:end-1) != x(2:end)), length(x)];
47   count = diff ([0 idx]);
48   if (nargout == 2)
49     value = x(idx);
50   endif
51
52 endfunction
53
54
55 %!assert (runlength([2 2 0 4 4 4 0 1 1 1 1]), [2 1 3 1 4]);
56 %!assert (runlength([2 2 0 4 4 4 0 1 1 1 1]'), [2 1 3 1 4]);
57 %!test
58 %! [c, v] = runlength ([2 2 0 4 4 4 0 1 1 1 1]);
59 %! assert (c, [2 1 3 1 4]);
60 %! assert (v, [2 0 4 0 1]);
61
62 %% Test input validation
63 %!error runlength ()
64 %!error runlength (1, 2)
65 %!error runlength (['A'; 'B'])
66 %!error runlength (ones(2,2))