home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fb.zip / octave / SCRIPTS.ZIP / scripts.fat / signal / spencer.m < prev    next >
Text File  |  1999-12-24  |  1KB  |  60 lines

  1. ## Copyright (C) 1995, 1996, 1997  Friedrich Leisch
  2. ## 
  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.
  7. ## 
  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
  11. ## General Public License for more details. 
  12. ## 
  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.  
  17. ## usage:  spencer (X)
  18. ##
  19. ## returns Spencer's 15 point moving average of every single column of X
  20.  
  21. ## Author:  FL <Friedrich.Leisch@ci.tuwien.ac.at>
  22. ## Description:  Apply Spencer's 15-point MA filter
  23.  
  24. function retval = spencer (X)
  25.   
  26.   if (nargin != 1)
  27.     usage ("spencer (X)");
  28.   endif
  29.  
  30.   [xr, xc] = size(X);
  31.   
  32.   n = xr;
  33.   c = xc;
  34.   
  35.   if (is_vec(X))
  36.    n = length(X);
  37.    c = 1;
  38.    X = reshape(X, n, 1);
  39.   endif
  40.    
  41.   W = [-3, -6, -5, 3, 21, 46, 67, 74, 67, 46, 21, 3, -5, -6, -3] / 320;
  42.  
  43.   retval = fftfilt (W, X);
  44.   retval = [zeros(7,c); retval(15:n,:); zeros(7,c);];
  45.   
  46.   retval = reshape(retval, xr, xc);
  47.   
  48. endfunction
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.