Mercurial > hg > octave-lyh
annotate scripts/signal/hurst.m @ 17535:c12c688a35ed default tip lyh
Fix warnings
author | LYH <lyh.kernel@gmail.com> |
---|---|
date | Fri, 27 Sep 2013 17:43:27 +0800 |
parents | 1c89599167a6 |
children |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
1 ## Copyright (C) 1995-2012 Friedrich Leisch |
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 | |
7016 | 7 ## the Free Software Foundation; either version 3 of the License, or (at |
8 ## your option) any later version. | |
3426 | 9 ## |
3922 | 10 ## Octave is distributed in the hope that it will be useful, but |
3191 | 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 ## | |
3191 | 15 ## You should have received a copy of the GNU General Public License |
7016 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
3191 | 18 |
3449 | 19 ## -*- texinfo -*- |
20 ## @deftypefn {Function File} {} hurst (@var{x}) | |
21 ## Estimate the Hurst parameter of sample @var{x} via the rescaled range | |
22 ## statistic. If @var{x} is a matrix, the parameter is estimated for | |
23 ## every single column. | |
24 ## @end deftypefn | |
3191 | 25 |
3457 | 26 ## Author: FL <Friedrich.Leisch@ci.tuwien.ac.at> |
27 ## Description: Estimate the Hurst parameter | |
3426 | 28 |
3191 | 29 function H = hurst (x) |
30 | |
31 if (nargin != 1) | |
6046 | 32 print_usage (); |
3191 | 33 endif |
34 | |
4030 | 35 if (isscalar (x)) |
11472
1740012184f9
Use uppercase for variable names in error() strings to match Info documentation. Only m-files done.
Rik <octave@nomad.inbox5.com>
parents:
8920
diff
changeset
|
36 error ("hurst: X must not be a scalar"); |
4030 | 37 elseif (isvector (x)) |
3191 | 38 x = reshape (x, length (x), 1); |
7151 | 39 endif |
3426 | 40 |
3238 | 41 [xr, xc] = size (x); |
3191 | 42 |
43 s = std (x); | |
44 w = cumsum (x - mean (x)); | |
14868
5d3a684236b0
maint: Use Octave coding conventions for cuddling parentheses in scripts directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
45 RS = (max (w) - min (w)) ./ s; |
3191 | 46 H = log (RS) / log (xr); |
3426 | 47 |
3191 | 48 endfunction |
17346
1c89599167a6
maint: End m-files with 1 blank line.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
49 |