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

通讯编程文档

开发平台:

Matlab

  1. function xl=loweq(x,ts,f0)
  2. %       xl=loweq(x,ts,f0)
  3. %LOWEQ      returns the lowpass equivalent of the signal x
  4. %       f0 is the center frequency. 
  5. %       ts is the sampling interval.
  6. %   
  7. t=[0:ts:ts*(length(x)-1)];  
  8. z=hilbert(x);
  9. xl=z.*exp(-j*2*pi*f0*t);