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

通讯编程文档

开发平台:

Matlab

  1. function y=sinc(x)
  2. % Y=SINC(X), determines the sinc function
  3. y=(sin(pi*x)+(x==0))./(pi*x+(x==0));