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 |
3191
|
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 |
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 |
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. |
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 |