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

通讯编程文档

开发平台:

Matlab

  1. function y=rect(x)
  2. % y=rect(x), determines the rectangular function
  3. y=((x>-0.5) & (x<0.5))+0.5*(x==-0.5)+0.5*(x==0.5);