3191
|
1 ## Copyright (C) 1995, 1996, 1997 Friedrich Leisch |
3426
|
2 ## |
3191
|
3 ## This program is free software; you can redistribute it and/or modify |
|
4 ## it under the terms of the GNU General Public License as published by |
|
5 ## the Free Software Foundation; either version 2, or (at your option) |
|
6 ## any later version. |
3426
|
7 ## |
3191
|
8 ## This program is distributed in the hope that it will be useful, but |
|
9 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
11 ## General Public License for more details. |
|
12 ## |
3191
|
13 ## You should have received a copy of the GNU General Public License |
|
14 ## along with this file. If not, write to the Free Software Foundation, |
|
15 ## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
16 |
3449
|
17 ## -*- texinfo -*- |
|
18 ## @deftypefn {Function File} {} spencer (@var{x}) |
|
19 ## Return Spencer's 15 point moving average of every single column of |
|
20 ## @var{x}. |
|
21 ## @end deftypefn |
3426
|
22 |
3457
|
23 ## Author: FL <Friedrich.Leisch@ci.tuwien.ac.at> |
|
24 ## Description: Apply Spencer's 15-point MA filter |
3191
|
25 |
|
26 function retval = spencer (X) |
3426
|
27 |
3191
|
28 if (nargin != 1) |
|
29 usage ("spencer (X)"); |
|
30 endif |
|
31 |
3238
|
32 [xr, xc] = size(X); |
3426
|
33 |
3191
|
34 n = xr; |
|
35 c = xc; |
3426
|
36 |
3191
|
37 if (is_vector(X)) |
|
38 n = length(X); |
|
39 c = 1; |
|
40 X = reshape(X, n, 1); |
|
41 endif |
3426
|
42 |
3238
|
43 W = [-3, -6, -5, 3, 21, 46, 67, 74, 67, 46, 21, 3, -5, -6, -3] / 320; |
3191
|
44 |
|
45 retval = fftfilt (W, X); |
|
46 retval = [zeros(7,c); retval(15:n,:); zeros(7,c);]; |
3426
|
47 |
3191
|
48 retval = reshape(retval, xr, xc); |
3426
|
49 |
3191
|
50 endfunction |
|
51 |
|
52 |
|
53 |
|
54 |
|
55 |
|
56 |
|
57 |
|
58 |
|
59 |
|
60 |
|
61 |