3191
|
1 ## Copyright (C) 1995, 1996, 1997 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} {} fractdiff (@var{x}, @var{d}) |
3499
|
21 ## Compute the fractional differences @math{(1-L)^d x} where @math{L} |
|
22 ## denotes the lag-operator and @math{d} is greater than -1. |
3449
|
23 ## @end deftypefn |
3426
|
24 |
3457
|
25 ## Author: FL <Friedrich.Leisch@ci.tuwien.ac.at> |
|
26 ## Description: Compute fractional differences |
3426
|
27 |
3191
|
28 function retval = fractdiff (x, d) |
3426
|
29 |
3191
|
30 N = 100; |
3426
|
31 |
4030
|
32 if (! isvector (x)) |
3457
|
33 error ("fractdiff: x must be a vector") |
3191
|
34 endif |
3426
|
35 |
4030
|
36 if (! isscalar (d)) |
3457
|
37 error ("fractdiff: d must be a scalar") |
3191
|
38 endif |
3426
|
39 |
|
40 |
3191
|
41 if (d >= 1) |
|
42 for k = 1 : d |
|
43 x = x(2 : length (x)) - x(1 : length (x) - 1); |
|
44 endfor |
|
45 endif |
3426
|
46 |
3191
|
47 if (d > -1) |
3426
|
48 |
3191
|
49 d = rem (d, 1); |
3426
|
50 |
3191
|
51 if (d != 0) |
|
52 n = (0 : N)'; |
|
53 w = real (gamma (-d+n) ./ gamma (-d) ./ gamma (n+1)); |
|
54 retval = fftfilt (w, x); |
|
55 retval = retval(1 : length (x)); |
|
56 else |
|
57 retval = x; |
|
58 endif |
3426
|
59 |
3191
|
60 else |
3457
|
61 error ("fractdiff: d must be > -1"); |
3426
|
62 |
3191
|
63 endif |
3426
|
64 |
3191
|
65 endfunction |