home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fb.zip / octave / SCRIPTS.ZIP / scripts / signal / sinc.m < prev    next >
Text File  |  1999-11-20  |  2KB  |  61 lines

  1. ## Copyright (C) 1996, 1997 John W. Eaton
  2. ##
  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
  7. ## the Free Software Foundation; either version 2, or (at your option)
  8. ## any later version.
  9. ##
  10. ## Octave is distributed in the hope that it will be useful, but
  11. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. ## General Public License for more details.
  14. ##
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with Octave; see the file COPYING.  If not, write to the Free
  17. ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  18. ## 02111-1307, USA.
  19.  
  20. ## -*- texinfo -*-
  21. ## @deftypefn {Function File} {} sinc (@var{x})
  22. ## Return
  23. ## @iftex
  24. ## @tex
  25. ## $ \sin (\pi x)/(\pi x)$.
  26. ## @end tex
  27. ## @end iftex
  28. ## @ifinfo
  29. ##  sin(pi*x)/(pi*x).
  30. ## @end ifinfo
  31. ## @end deftypefn
  32.  
  33. ## Author: jwe ???
  34.  
  35. function result = sinc (x)
  36.  
  37.   ## We either need to set the do_fortran_indexing variable to "true"
  38.   ## or use reshape to convert the input matrix to a vector, so that
  39.   ## we can use find to determine the elements of x that equal zero.
  40.   ## I prefer reshaping.
  41.  
  42.   [nr, nc] = size(x);
  43.  
  44.   nels = nr*nc;
  45.  
  46.   x = reshape(x,nels,1);
  47.  
  48.   ## Set result to all ones initially.
  49.   result = ones(nels,1);
  50.  
  51.   ## Find non-zero elements in the input matrix.
  52.   i = find(x);
  53.  
  54.   if (!isempty(i))
  55.     result(i) = sin(pi*x(i))./(pi*x(i));
  56.   endif
  57.  
  58.   result = reshape(result,nr,nc);
  59.  
  60. endfunction
  61.