7017
|
1 ## Copyright (C) 1995, 1996, 1997, 1998, 2000, 2002, 2005, 2007 |
|
2 ## Friedrich Leisch |
3426
|
3 ## |
3922
|
4 ## This file is part of Octave. |
|
5 ## |
|
6 ## Octave is free software; you can redistribute it and/or modify it |
|
7 ## under the terms of the GNU General Public License as published by |
7016
|
8 ## the Free Software Foundation; either version 3 of the License, or (at |
|
9 ## your option) any later version. |
3426
|
10 ## |
3922
|
11 ## Octave is distributed in the hope that it will be useful, but |
3191
|
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
14 ## General Public License for more details. |
|
15 ## |
3191
|
16 ## You should have received a copy of the GNU General Public License |
7016
|
17 ## along with Octave; see the file COPYING. If not, see |
|
18 ## <http://www.gnu.org/licenses/>. |
3191
|
19 |
3449
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} fractdiff (@var{x}, @var{d}) |
3499
|
22 ## Compute the fractional differences @math{(1-L)^d x} where @math{L} |
|
23 ## denotes the lag-operator and @math{d} is greater than -1. |
3449
|
24 ## @end deftypefn |
3426
|
25 |
3457
|
26 ## Author: FL <Friedrich.Leisch@ci.tuwien.ac.at> |
|
27 ## Description: Compute fractional differences |
3426
|
28 |
3191
|
29 function retval = fractdiff (x, d) |
3426
|
30 |
3191
|
31 N = 100; |
3426
|
32 |
4030
|
33 if (! isvector (x)) |
3457
|
34 error ("fractdiff: x must be a vector") |
3191
|
35 endif |
3426
|
36 |
4030
|
37 if (! isscalar (d)) |
3457
|
38 error ("fractdiff: d must be a scalar") |
3191
|
39 endif |
3426
|
40 |
|
41 |
3191
|
42 if (d >= 1) |
|
43 for k = 1 : d |
|
44 x = x(2 : length (x)) - x(1 : length (x) - 1); |
|
45 endfor |
|
46 endif |
3426
|
47 |
3191
|
48 if (d > -1) |
3426
|
49 |
3191
|
50 d = rem (d, 1); |
3426
|
51 |
3191
|
52 if (d != 0) |
|
53 n = (0 : N)'; |
|
54 w = real (gamma (-d+n) ./ gamma (-d) ./ gamma (n+1)); |
|
55 retval = fftfilt (w, x); |
|
56 retval = retval(1 : length (x)); |
|
57 else |
|
58 retval = x; |
|
59 endif |
3426
|
60 |
3191
|
61 else |
3457
|
62 error ("fractdiff: d must be > -1"); |
3426
|
63 |
3191
|
64 endif |
3426
|
65 |
3191
|
66 endfunction |