sinc.m
上传用户:loeagle
上传日期:2013-03-02
资源大小:1236k
文件大小:1k
源码类别:

通讯编程文档

开发平台:

Matlab

  1. function y=sinc(x)
  2. %SINC Sin(pi*x)/(pi*x) function.
  3. %   SINC(X) returns a matrix whose elements are the sinc of the elements 
  4. %   of X, i.e.
  5. %        y = sin(pi*x)/(pi*x)    if x ~= 0
  6. %          = 1                   if x == 0
  7. %   where x is an element of the input matrix and y is the resultant
  8. %   output element.
  9. %
  10. %   See also SQUARE, SIN, COS, CHIRP, DIRIC, GAUSPULS, PULSTRAN, RECTPULS,
  11. %   and TRIPULS.
  12. %   Author(s): T. Krauss, 1-14-93
  13. %   Copyright 1988-2001 The MathWorks, Inc.
  14. %       $Revision: 1.6 $  $Date: 2001/04/02 20:20:54 $
  15. y=ones(size(x));
  16. i=find(x);
  17. y(i)=sin(pi*x(i))./(pi*x(i));