home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts.fat / signal / bartlett.m < prev    next >
Text File  |  1999-04-29  |  2KB  |  50 lines

  1. ## Copyright (C) 1995, 1996, 1997  Andreas Weingessel
  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:  bartlett (m)
  18. ##
  19. ## Returns the filter coefficients of a Bartlett (triangular) window of
  20. ## length m.
  21. ##
  22. ## For a definition of the Bartlett window, see e.g. A. V. Oppenheim &
  23. ## R. W. Schafer, "Discrete-Time Signal Processing".
  24.  
  25. ## Author:  AW <Andreas.Weingessel@ci.tuwien.ac.at>
  26. ## Description:  Coefficients of the Bartlett (triangular) window
  27.  
  28. function c = bartlett (m)
  29.   
  30.   if (nargin != 1)
  31.     usage ("bartlett (m)");
  32.   endif
  33.   
  34.   if !(is_scal (m) && (m == round (m)) && (m > 0))
  35.     error ("bartlett:  m has to be an integer > 0");
  36.   endif
  37.   
  38.   if (m == 1)
  39.     c = 1;
  40.   else
  41.     m = m - 1;
  42.     n = fix (m / 2);
  43.     c (1 : n+1) = 2 * (0 : n)' / m;
  44.     c (n+2 : m+1) = 2 - 2 * (n+1 : m)'/m;
  45.   endif
  46.  
  47.   c = c';
  48.  
  49. endfunction
  50.